We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6de8c1b + 43d3cfa commit e7511d8Copy full SHA for e7511d8
1 file changed
setup.py
@@ -5,6 +5,7 @@
5
6
from setuptools import setup, Extension
7
import sys
8
+from io import open
9
10
try:
11
import commands
@@ -90,10 +91,10 @@ def libraries(self, value):
90
91
pass
92
93
-with open('README.rst') as f:
94
+with open('README.rst', encoding='utf-8') as f:
95
long_description = f.read()
96
-with open('CHANGES.rst') as f:
97
+with open('CHANGES.rst', encoding='utf-8') as f:
98
long_description += '\n\n'
99
long_description += f.read()
100
0 commit comments