Skip to content

Commit 00c2735

Browse files
committed
Improved install
1 parent 29085d5 commit 00c2735

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ python:
88
- pypy
99
install:
1010
- pip install pytest pytest-cov coveralls flake8
11-
- pip install https://github.com/graphql-python/graphql-core/archive/master.zip
11+
- pip install .
1212
script:
1313
- py.test --cov=graphql_relay
1414
# - flake8

MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
global-exclude tests/*
2+
recursive-exclude tests *
3+
recursive-exclude tests_py35 *

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def run_tests(self):
2424

2525
setup(
2626
name='graphql-relay',
27-
version='0.4.1',
27+
version='0.4b1',
2828

2929
description='Relay implementation for Python',
3030
long_description=open('README.rst').read(),
@@ -54,7 +54,8 @@ def run_tests(self):
5454
packages=find_packages(exclude=['tests']),
5555

5656
install_requires=[
57-
'graphql-core>=0.5.0'
57+
'graphql-core==0.5b3',
58+
'pypromise>=0.4.0'
5859
],
5960
tests_require=['pytest>=2.7.2'],
6061
extras_require={

0 commit comments

Comments
 (0)