Skip to content

Commit

Permalink
UTF-8 encoding for setup
Browse files Browse the repository at this point in the history
a symbol (probably the “) caused problems when trying to pip install the library on windows (Issue ml-jku#29)
  • Loading branch information
Nix-da authored Apr 23, 2023
1 parent f56f929 commit 5ebe3b4
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

with open(r'README.md', mode=r'r') as readme_handle:
with open(r'README.md', mode=r'r', encoding="utf8") as readme_handle:
long_description = readme_handle.read()

setuptools.setup(
Expand Down

0 comments on commit 5ebe3b4

Please sign in to comment.