Skip to content

Commit 08c5995

Browse files
authored
Pin graphql-core to <2 (#20)
Pin graphql-core to <2
2 parents 17ce2ef + 935bff5 commit 08c5995

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

.travis.yml

+12-10
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
language: python
2-
sudo: false
2+
dist: xenial
3+
34
python:
4-
- 2.7
5-
- 3.3
6-
- 3.4
7-
- 3.5
8-
- pypy
5+
- 2.7
6+
- 3.5
7+
- 3.6
8+
- 3.7
9+
- pypy3
910
install:
10-
- pip install pytest pytest-cov coveralls flake8
11-
- pip install .
11+
- pip install pytest pytest-cov flake8
12+
- pip install .
1213
script:
13-
- py.test --cov=graphql_relay
14+
- py.test --cov=graphql_relay
1415
# - flake8
1516
after_success:
16-
- coveralls
17+
- pip install coveralls
18+
- coveralls

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def run_tests(self):
5555

5656
install_requires=[
5757
'six>=1.10.0',
58-
'graphql-core>=0.5.0',
58+
'graphql-core>=0.5.0,<2',
5959
'promise>=0.4.0'
6060
],
6161
tests_require=['pytest>=2.7.2'],

0 commit comments

Comments
 (0)