Skip to content

Commit 3a3b2b4

Browse files
committed
Fix long description loading on python 2.7
1 parent d7c5cff commit 3a3b2b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools.depends import get_module_constant
44
from setuptools import setup
55

6-
with open("README.md", "r", encoding="utf-8") as fh:
6+
with open("README.md", "r") as fh:
77
long_description = fh.read()
88

99
setup(

0 commit comments

Comments
 (0)