Skip to content

Commit

Permalink
fixed UnicodeDecodeError during installation on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
NaIwo committed May 14, 2021
1 parent 237c584 commit be6f5d7
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 be6f5d7

Please sign in to comment.