We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71dfa15 commit bfd004dCopy full SHA for bfd004d
1 file changed
setup.py
@@ -2,8 +2,8 @@
2
3
from os import path
4
this_directory = path.abspath(path.dirname(__file__))
5
-with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
6
- long_description = f.read()
+with open(path.join(this_directory, 'README.md'), 'rb') as f:
+ long_description = f.read().decode('utf-8')
7
8
9
setup(
0 commit comments