Skip to content

Commit 26cfa88

Browse files
authored
Fixed non-deterministic setup.py. Related issue #427
This commit is trying to fix #427 (comment)
1 parent 763665f commit 26cfa88

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
'pytest-django>=3.2.1',
2525
] + rest_framework_require
2626

27-
django_version = 'Django>=1.8.0,<2' if sys.version_info[0] < 3 else 'Django>=1.8.0'
2827
setup(
2928
name='graphene-django',
3029
version=version,
@@ -60,7 +59,7 @@
6059
'six>=1.10.0',
6160
'graphene>=2.1,<3',
6261
'graphql-core>=2.1rc1',
63-
django_version,
62+
'Django>=1.8.0',
6463
'iso8601',
6564
'singledispatch>=3.4.0.3',
6665
'promise>=2.1',

0 commit comments

Comments
 (0)