Skip to content

Commit 2c43a2a

Browse files
author
as
committed
Now setup.py works on Windows other tools have trouble with PKG-INFO. Forcing long_description to ASCII.
1 parent 3aafe58 commit 2c43a2a

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
@@ -62,7 +62,7 @@ def run_tests(self):
6262
name="graphene",
6363
version=version,
6464
description="GraphQL Framework for Python",
65-
long_description=codecs.open("README.rst", "r", "utf-8").read(),
65+
long_description=codecs.open("README.rst", "r", encoding="ascii", errors="replace").read(),
6666
url="https://github.com/graphql-python/graphene",
6767
author="Syrus Akbary",
6868
author_email="[email protected]",

0 commit comments

Comments
 (0)