Skip to content

Commit 36a902f

Browse files
authored
Merge pull request #581 from lucascosta/patch-1
Prevent requirement breaking changes
2 parents 05518a7 + 71177fe commit 36a902f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ def run_tests(self):
8686
packages=find_packages(exclude=['tests', 'tests.*']),
8787

8888
install_requires=[
89-
'six>=1.10.0',
90-
'graphql-core>=2.0',
91-
'graphql-relay>=0.4.5',
92-
'promise>=2.1',
89+
'six>=1.10.0,<2',
90+
'graphql-core>=2.0,<3',
91+
'graphql-relay>=0.4.5,<1',
92+
'promise>=2.1,<3',
9393
],
9494
tests_require=tests_require,
9595
extras_require={

0 commit comments

Comments
 (0)