From 2c43a2ae0a04fc61ecf68e9b6f7df8c6fbaae886 Mon Sep 17 00:00:00 2001 From: as Date: Wed, 28 Nov 2018 17:58:19 +0100 Subject: [PATCH] Now setup.py works on Windows other tools have trouble with PKG-INFO. Forcing long_description to ASCII. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4b742900..f8c776c7 100644 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ setup( name="graphene", version=version, description="GraphQL Framework for Python", - long_description=codecs.open("README.rst", "r", "utf-8").read(), + long_description=codecs.open("README.rst", "r", encoding="ascii", errors="replace").read(), url="https://github.com/graphql-python/graphene", author="Syrus Akbary", author_email="me@syrusakbary.com",