From 9f33a710ae41fbdce0f2d31babf5cc4d58b154ef Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Tue, 31 Dec 2019 14:03:27 +0000 Subject: [PATCH] Update setup.py --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a021ff3c..58ec7345 100644 --- a/setup.py +++ b/setup.py @@ -78,12 +78,13 @@ setup( "Topic :: Software Development :: Libraries", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", ], keywords="api graphql protocol rest relay graphene", packages=find_packages(exclude=["tests", "tests.*", "examples"]), install_requires=[ - "graphql-core>=3.0.0a0,<4", - "graphql-relay>=3.0.0a0,<4", + "graphql-core>=3.0.0,<4", + "graphql-relay>=3.0.0,<4", "aniso8601>=6,<9", ], tests_require=tests_require,