mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-22 17:46:57 +03:00
Merge pull request #581 from lucascosta/patch-1
Prevent requirement breaking changes
This commit is contained in:
commit
36a902fbfa
8
setup.py
8
setup.py
|
@ -86,10 +86,10 @@ setup(
|
|||
packages=find_packages(exclude=['tests', 'tests.*']),
|
||||
|
||||
install_requires=[
|
||||
'six>=1.10.0',
|
||||
'graphql-core>=2.0',
|
||||
'graphql-relay>=0.4.5',
|
||||
'promise>=2.1',
|
||||
'six>=1.10.0,<2',
|
||||
'graphql-core>=2.0,<3',
|
||||
'graphql-relay>=0.4.5,<1',
|
||||
'promise>=2.1,<3',
|
||||
],
|
||||
tests_require=tests_require,
|
||||
extras_require={
|
||||
|
|
Loading…
Reference in New Issue
Block a user