Skip to content

Commit 9da1d1e

Browse files
committed
Update package requirements
1 parent ae7e48f commit 9da1d1e

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ install:
2525
if [ "$TEST_TYPE" = build ]; then
2626
pip install --download-cache $HOME/.cache/pip/ pytest pytest-cov coveralls six pytest-django django-filter sqlalchemy_utils
2727
pip install --download-cache $HOME/.cache/pip psycopg2 > /dev/null 2>&1
28-
pip install https://github.com/graphql-python/graphql-core/archive/master.zip
29-
pip install https://github.com/graphql-python/graphql-relay-py/archive/master.zip
28+
pip install --download-cache $HOME/.cache/pip/ -e .
3029
pip install --download-cache $HOME/.cache/pip/ -e .[django]
3130
pip install --download-cache $HOME/.cache/pip/ -e .[sqlalchemy]
3231
pip install django==$DJANGO_VERSION

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ def run_tests(self):
5555

5656
install_requires=[
5757
'six>=1.10.0',
58-
# 'graphql-core>=0.5.0',
59-
# 'graphql-relay==0.4.2',
58+
'graphql-core==0.5b3',
59+
'graphql-relay==0.4b1',
6060
'iso8601',
6161
],
6262
tests_require=[

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ deps=
88
django>=1.8.0,<1.9
99
pytest-django
1010
graphql-django-view>=1.0.0
11-
graphql-core==0.4.9
12-
graphql-relay==0.3.3
11+
graphql-core==0.5b3
12+
graphql-relay==0.4b1
1313
six
1414
blinker
1515
singledispatch

0 commit comments

Comments
 (0)