Skip to content

Commit

Permalink
fix(setup.py): remove encoding param
Browse files Browse the repository at this point in the history
  • Loading branch information
h2non committed Dec 12, 2016
1 parent 08a6ec9 commit 7098a71
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ def run_tests(self):
sys.exit(errno)


with open('requirements-dev.txt', encoding='UTF-8') as f:
with open('requirements-dev.txt') as f:
tests_require = f.read().splitlines()
with open('requirements.txt', encoding='UTF-8') as f:
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
with open('README.rst', encoding='UTF-8') as f:
with open('README.rst') as f:
readme = f.read()
with open('History.rst', encoding='UTF-8') as f:
with open('History.rst') as f:
history = f.read()


Expand Down

0 comments on commit 7098a71

Please sign in to comment.