Skip to content

Commit

Permalink
[patch:pkg] Fix setup.py encoding problem (#145)
Browse files Browse the repository at this point in the history
encoding problem caused problem installing the package from pip.
adding utf-8 solved it.

Co-authored-by: Edwin Onuonga <edwinonuonga@gmail.com>
  • Loading branch information
Prhmma and eonu authored Jan 16, 2021
1 parent 403f0e6 commit b6ae6e1
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 @@ -21,7 +21,7 @@

VERSION = '0.10.2'

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

setup(
Expand Down Expand Up @@ -58,4 +58,4 @@
python_requires = python_requires,
setup_requires = setup_requires,
install_requires = install_requires
)
)

0 comments on commit b6ae6e1

Please sign in to comment.