From 3864ad684688e3fe8f8a8d32725da910390a34d5 Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Fri, 28 Jun 2019 10:11:22 +0100 Subject: [PATCH] Pin graphql-core to <2 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cad62d3f..bd085a78 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ packages=find_packages(include=["gql*"]), install_requires=[ 'six>=1.10.0', - 'graphql-core>=0.5.0', + 'graphql-core>=0.5.0,<2', 'promise>=0.4.0' ], tests_require=['pytest>=2.7.2', 'mock'],