Skip to content

Commit

Permalink
Merge pull request #843 from colin-pm/bugfix/long_description_encoding
Browse files Browse the repository at this point in the history
setup.py: Add encoding for long_description
  • Loading branch information
colin-pm committed Jul 29, 2022
2 parents e138eb7 + 2ad25c7 commit ad6b5d9
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
Expand Up @@ -3,7 +3,7 @@


def load_long_description():
with open("README.md") as fh:
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
return long_description

Expand Down

0 comments on commit ad6b5d9

Please sign in to comment.