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 22135ba commit b35b1f8Copy full SHA for b35b1f8
setup.py
@@ -15,7 +15,7 @@ def get_version(package):
15
return re.search("__version__ = ['\"]([^'\"]+)['\"]", init_py).group(1)
16
17
def read_all(f):
18
- with open(f) as I:
+ with io.open(f, encoding="utf-8") as I:
19
return I.read()
20
21
requirements = map(str.strip, open("requirements.txt").readlines())
0 commit comments