Skip to content

Commit

Permalink
setup: Remove UTF-8 encoding argument.
Browse files Browse the repository at this point in the history
It's implied, and not supported in Python 2.
  • Loading branch information
timabbott committed Jul 12, 2019
1 parent 771f7d9 commit b34db82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def visit_Assign(self, node):
self.VERSION = node.value.s

this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
with open(os.path.join(this_directory, 'README.rst')) as f:
long_description = f.read()

setup(
Expand Down

0 comments on commit b34db82

Please sign in to comment.