From bde24ae495b51206ae261462056c87abe9c957af Mon Sep 17 00:00:00 2001 From: Nick Sandford Date: Thu, 29 Nov 2018 10:23:59 +1100 Subject: [PATCH 1/2] Don't require a specific version of django-filter --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 58a271e..d7acaf5 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ def get_packages(): 'graphql-core==2.0', 'graphene==2.0.1', 'graphene-django==2.0', - 'django-filter==1.1.0', + 'django-filter>=1.1.0', 'djangorestframework>=3.6.0' ], extras_require={ From 515ee48a5db74a5389882eacfc8c498dd213b06a Mon Sep 17 00:00:00 2001 From: Nick Sandford Date: Thu, 29 Nov 2018 10:32:25 +1100 Subject: [PATCH 2/2] Update other packages --- setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index d7acaf5..84a1334 100644 --- a/setup.py +++ b/setup.py @@ -49,15 +49,15 @@ def get_packages(): 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: Implementation :: PyPy', ], - + keywords='api graphql protocol rest graphene django', - + packages=get_packages(), - + install_requires=[ - 'graphql-core==2.0', - 'graphene==2.0.1', - 'graphene-django==2.0', + 'graphql-core>=2.1.0', + 'graphene>=2.1.3', + 'graphene-django>=2.2.0', 'django-filter>=1.1.0', 'djangorestframework>=3.6.0' ],