From daf53a07dda5a1610e9964851c3a65cce86169ae Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Mon, 24 Jun 2019 09:25:55 +0100 Subject: [PATCH 1/4] Pin graphql-core to <1 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 87b6b07..37a543b 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ def run_tests(self): install_requires=[ 'six>=1.10.0', - 'graphql-core>=0.5.0', + 'graphql-core>=0.5.0,<1', 'promise>=0.4.0' ], tests_require=['pytest>=2.7.2'], From dadc40ea1deaa234a8f5a4697301691a237385a1 Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Mon, 24 Jun 2019 09:28:55 +0100 Subject: [PATCH 2/4] Use xenial dist --- .travis.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index cd47dab..5db7cdb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,18 @@ language: python -sudo: false +dist: xenial + python: -- 2.7 -- 3.3 -- 3.4 -- 3.5 -- pypy + - 2.7 + - 3.3 + - 3.4 + - 3.5 + - pypy3 install: -- pip install pytest pytest-cov coveralls flake8 -- pip install . + - pip install pytest pytest-cov flake8 + - pip install . script: -- py.test --cov=graphql_relay + - py.test --cov=graphql_relay # - flake8 after_success: -- coveralls + - pip install coveralls + - coveralls From 1b307099d7ea9b7e0bcffbd5c79b462f42b951c5 Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Mon, 24 Jun 2019 09:29:27 +0100 Subject: [PATCH 3/4] Update python versions --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5db7cdb..6bd80c7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,9 +3,9 @@ dist: xenial python: - 2.7 - - 3.3 - - 3.4 - 3.5 + - 3.6 + - 3.7 - pypy3 install: - pip install pytest pytest-cov flake8 From 935bff5356a9e40a0e626e63a4418a47f02f0524 Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Mon, 24 Jun 2019 09:32:04 +0100 Subject: [PATCH 4/4] Pin to less that <2 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 37a543b..079fc21 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ def run_tests(self): install_requires=[ 'six>=1.10.0', - 'graphql-core>=0.5.0,<1', + 'graphql-core>=0.5.0,<2', 'promise>=0.4.0' ], tests_require=['pytest>=2.7.2'],