Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin graphql-core to <2 #20

Merged
merged 4 commits into from
Jun 24, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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