We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following line:
with open("README.md", "r") as fh: long_description = fh.read()
on line 5 of setup.py raises the following error: "UnicodeDecodeError: 'charmap' codec can't decode byte 0x8d in position 8698: character maps to ".
Suggest following correction:
with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read()
The text was updated successfully, but these errors were encountered:
This no longer seems to be an issue after the move from setup.py to pyproject.toml (see #50). Should we close it?
setup.py
pyproject.toml
Sorry, something went wrong.
No branches or pull requests
The following line:
on line 5 of setup.py raises the following error: "UnicodeDecodeError: 'charmap' codec can't decode byte 0x8d in position 8698: character maps to ".
Suggest following correction:
The text was updated successfully, but these errors were encountered: