Skip to content

Commit

Permalink
fix: possible issue with UTF-8 and README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Dec 5, 2022
1 parent 5018e69 commit 53ae717
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 @@ -77,6 +77,6 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
long_description = open(os.path.join(os.path.dirname(__file__), "README.md"), "r").read(),
long_description = open(os.path.join(os.path.dirname(__file__), "README.md"), "rb").read().decode("utf-8"),
long_description_content_type = "text/markdown"
)

0 comments on commit 53ae717

Please sign in to comment.