Skip to content

Commit 3d17620

Browse files
committed
fix: possible issue with UTF-8 and README.md
1 parent 02971b1 commit 3d17620

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,6 @@
6363
"Programming Language :: Python :: 3.6",
6464
"Programming Language :: Python :: 3.7"
6565
],
66-
long_description = open(os.path.join(os.path.dirname(__file__), "README.md"), "r").read(),
66+
long_description = open(os.path.join(os.path.dirname(__file__), "README.md"), "rb").read().decode("utf-8"),
6767
long_description_content_type = "text/markdown"
6868
)

0 commit comments

Comments
 (0)