From b6c8931b22d7016a0022fc8de3af12d73b7697ec Mon Sep 17 00:00:00 2001 From: Eran Kampf <205185+ekampf@users.noreply.github.com> Date: Wed, 29 Sep 2021 17:11:16 -0700 Subject: [PATCH] Fix GraphQL-core dependency GraphQL-core released `3.2.0rc1` with some breaking changes and 1. We should be getting RC releases in our dependencies 2. It has breaking changes, so we shouldn't get 3.2.0 unless someone fixes it explicitly --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1503c3c6..ae59a92a 100644 --- a/setup.py +++ b/setup.py @@ -82,7 +82,7 @@ setup( keywords="api graphql protocol rest relay graphene", packages=find_packages(exclude=["examples*"]), install_requires=[ - "graphql-core>=3.1.2,<4", + "graphql-core~=3.1.2", "graphql-relay>=3.0,<4", "aniso8601>=8,<10", ],