8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 17ce2ef + 935bff5 commit 08c5995Copy full SHA for 08c5995
.travis.yml
@@ -1,16 +1,18 @@
1
language: python
2
-sudo: false
+dist: xenial
3
+
4
python:
-- 2.7
5
-- 3.3
6
-- 3.4
7
-- 3.5
8
-- pypy
+ - 2.7
+ - 3.5
+ - 3.6
+ - 3.7
9
+ - pypy3
10
install:
-- pip install pytest pytest-cov coveralls flake8
11
-- pip install .
+ - pip install pytest pytest-cov flake8
12
+ - pip install .
13
script:
-- py.test --cov=graphql_relay
14
+ - py.test --cov=graphql_relay
15
# - flake8
16
after_success:
-- coveralls
17
+ - pip install coveralls
18
+ - coveralls
setup.py
@@ -55,7 +55,7 @@ def run_tests(self):
55
56
install_requires=[
57
'six>=1.10.0',
58
- 'graphql-core>=0.5.0',
+ 'graphql-core>=0.5.0,<2',
59
'promise>=0.4.0'
60
],
61
tests_require=['pytest>=2.7.2'],
0 commit comments