Skip to content

Commit

Permalink
Merge pull request #74 from NaIwo/iwo
Browse files Browse the repository at this point in the history
fixed UnicodeDecodeError during installation on Windows
  • Loading branch information
Damian Horna authored May 16, 2021
2 parents 237c584 + be6f5d7 commit e9d187a
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
@@ -1,6 +1,6 @@
import setuptools # pragma no cover

with open("README.md", "r") as fh: # pragma no cover
with open("README.md", "r", encoding='UTF8') as fh: # pragma no cover

long_description = fh.read()

Expand Down

0 comments on commit e9d187a

Please sign in to comment.