From 26cfa88f3a4b3fc62df76b60b39397efb229c0bd Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Fri, 8 Jun 2018 11:51:41 -0700 Subject: [PATCH] Fixed non-deterministic setup.py. Related issue #427 This commit is trying to fix https://github.com/graphql-python/graphene-django/issues/427#issuecomment-395539715 --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index cec5a9d..2233806 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,6 @@ tests_require = [ 'pytest-django>=3.2.1', ] + rest_framework_require -django_version = 'Django>=1.8.0,<2' if sys.version_info[0] < 3 else 'Django>=1.8.0' setup( name='graphene-django', version=version, @@ -60,7 +59,7 @@ setup( 'six>=1.10.0', 'graphene>=2.1,<3', 'graphql-core>=2.1rc1', - django_version, + 'Django>=1.8.0', 'iso8601', 'singledispatch>=3.4.0.3', 'promise>=2.1',