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
This commit is contained in:
Eran Kampf 2021-09-29 17:11:16 -07:00 committed by GitHub
parent f039af2810
commit b6c8931b22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,7 +82,7 @@ setup(
keywords="api graphql protocol rest relay graphene", keywords="api graphql protocol rest relay graphene",
packages=find_packages(exclude=["examples*"]), packages=find_packages(exclude=["examples*"]),
install_requires=[ install_requires=[
"graphql-core>=3.1.2,<4", "graphql-core~=3.1.2",
"graphql-relay>=3.0,<4", "graphql-relay>=3.0,<4",
"aniso8601>=8,<10", "aniso8601>=8,<10",
], ],