Updated graphql-relay version

This commit is contained in:
Syrus Akbary 2015-10-06 22:31:00 -07:00
parent b6163709f9
commit 660b766448
3 changed files with 4 additions and 5 deletions

View File

@ -8,10 +8,7 @@ python:
- pypy - pypy
install: install:
- pip install pytest pytest-cov coveralls flake8 six blinker - pip install pytest pytest-cov coveralls flake8 six blinker
# - pip install -e .[django] # TODO: Commented until graphqllib is in pypi - pip install -e .[django]
- pip install Django>=1.8.0 pytest-django singledispatch>=3.4.0.3
- pip install git+https://github.com/dittos/graphqllib.git # Last version of graphqllib
- pip install graphql-relay
- python setup.py develop - python setup.py develop
script: script:
- py.test --cov=graphene - py.test --cov=graphene

View File

@ -57,7 +57,7 @@ setup(
'six', 'six',
'blinker', 'blinker',
'graphql-core==0.1a0', 'graphql-core==0.1a0',
'graphql-relay==0.1.2' 'graphql-relay==0.1.3'
], ],
tests_require=['pytest>=2.7.2'], tests_require=['pytest>=2.7.2'],
extras_require={ extras_require={

View File

@ -6,6 +6,8 @@ deps=
pytest>=2.7.2 pytest>=2.7.2
django>=1.8.0,<1.9 django>=1.8.0,<1.9
pytest-django pytest-django
graphql-core==0.1a0
graphql-relay==0.1.3
flake8 flake8
six six
blinker blinker