Skip to content

Commit

Permalink
Pin graphql-core to <2 (#20)
Browse files Browse the repository at this point in the history
Pin graphql-core to <2
  • Loading branch information
jkimbo authored Jun 24, 2019
2 parents 17ce2ef + 935bff5 commit 08c5995
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
22 changes: 12 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
language: python
sudo: false
dist: xenial

python:
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
- 2.7
- 3.5
- 3.6
- 3.7
- 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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def run_tests(self):

install_requires=[
'six>=1.10.0',
'graphql-core>=0.5.0',
'graphql-core>=0.5.0,<2',
'promise>=0.4.0'
],
tests_require=['pytest>=2.7.2'],
Expand Down

0 comments on commit 08c5995

Please sign in to comment.