Skip to content

Commit

Permalink
Building on Windows failed due to character conversion (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
psavva authored Jul 12, 2023
1 parent f94c6f7 commit 62d6229
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
version = eval(version_file.read().split("=")[1].strip())

# Get the long description from the README file
with open(path.join(here, "README.md")) as f:
with open(path.join(here, "README.md"), encoding="utf8") as f:
long_description = f.read()

# Get the history from the CHANGELOG file
with open(path.join(here, "CHANGELOG.md")) as f:
with open(path.join(here, "CHANGELOG.md"), encoding="utf8") as f:
history = f.read()

setup(
Expand Down

0 comments on commit 62d6229

Please sign in to comment.