Skip to content

Commit 929d258

Browse files
committed
fix python2.7 encoding
1 parent fa08996 commit 929d258

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from os import path
88
from setuptools import find_packages, setup
99

10-
with open(path.join(path.abspath(path.dirname(__file__)), 'requirements.txt'), encoding='utf-8') as f:
10+
with open(path.join(path.abspath(path.dirname(__file__)), 'requirements.txt')) as f:
1111
install_requires = f.read()
1212

1313
setup(

0 commit comments

Comments
 (0)