File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 8
8
- pypy
9
9
install :
10
10
- pip install pytest pytest-cov coveralls flake8
11
- - pip install https://github.com/graphql-python/graphql-core/archive/master.zip
11
+ - pip install .
12
12
script :
13
13
- py.test --cov=graphql_relay
14
14
# - flake8
Original file line number Diff line number Diff line change
1
+ global-exclude tests/*
2
+ recursive-exclude tests *
3
+ recursive-exclude tests_py35 *
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ def run_tests(self):
24
24
25
25
setup (
26
26
name = 'graphql-relay' ,
27
- version = '0.4.1 ' ,
27
+ version = '0.4b1 ' ,
28
28
29
29
description = 'Relay implementation for Python' ,
30
30
long_description = open ('README.rst' ).read (),
@@ -54,7 +54,8 @@ def run_tests(self):
54
54
packages = find_packages (exclude = ['tests' ]),
55
55
56
56
install_requires = [
57
- 'graphql-core>=0.5.0'
57
+ 'graphql-core==0.5b3' ,
58
+ 'pypromise>=0.4.0'
58
59
],
59
60
tests_require = ['pytest>=2.7.2' ],
60
61
extras_require = {
You can’t perform that action at this time.
0 commit comments