From 48507b9a0f55bf03c3f7aa7feb2a2e6e2ce3d7db Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Sat, 28 Oct 2017 10:55:53 -0700 Subject: [PATCH] Pin requirements for Graphene 1.4.2 Pin requirements for Graphene 1.4.2 --- setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 3405e0c5..21c38db6 100644 --- a/setup.py +++ b/setup.py @@ -37,6 +37,7 @@ class PyTest(TestCommand): errno = pytest.main(self.pytest_args) sys.exit(errno) + tests_require = [ 'pytest>=2.7.2', 'pytest-benchmark', @@ -81,10 +82,10 @@ setup( packages=find_packages(exclude=['tests']), install_requires=[ - 'six>=1.10.0', - 'graphql-core>=1.1', - 'graphql-relay>=0.4.5', - 'promise>=2.0', + 'six>=1.10.0,<2', + 'graphql-core>=1.1,<2', + 'graphql-relay>=0.4.5,<1', + 'promise>=2.0,<2.1', ], tests_require=tests_require, extras_require={