You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is minor issue with this package in Windows environments that causes installation to fail due to the encoding not being specified for the README file in setup.
A quick fix that comes to mind for this would be to specify utf8 when opening the README in the setup.py: with open('README.rst', encoding='utf8') as readme_file:
This seems to be an issue in 2.3.0 but not in 2.2.4.
The text was updated successfully, but these errors were encountered:
There is minor issue with this package in Windows environments that causes installation to fail due to the encoding not being specified for the README file in setup.
A quick fix that comes to mind for this would be to specify utf8 when opening the README in the setup.py:
with open('README.rst', encoding='utf8') as readme_file:
This seems to be an issue in 2.3.0 but not in 2.2.4.
The text was updated successfully, but these errors were encountered: