Skip to content

Commit

Permalink
Merge pull request #370 from machow/fix-install-encoding
Browse files Browse the repository at this point in the history
fix(install): correclty read utf-8 in readme on windows
  • Loading branch information
machow authored Jan 12, 2022
2 parents 17ea905 + f3ad537 commit afcdc7e
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 @@ -10,7 +10,7 @@
VERSION = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))

with open('README.md') as f:
with open('README.md', encoding="utf-8") as f:
README = f.read()

# setup -----------------------------------------------------------------------
Expand Down

0 comments on commit afcdc7e

Please sign in to comment.