File tree Expand file tree Collapse file tree 7 files changed +387
-130
lines changed Expand file tree Collapse file tree 7 files changed +387
-130
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 3.0.0a1
2
+ current_version = 3.0.0a2
3
3
commit = False
4
4
tag = False
5
5
Original file line number Diff line number Diff line change 6
6
python : 3.7
7
7
dist : xenial
8
8
sudo : true
9
+ - name : Unit tests with Python 3.8
10
+ env : TOXENV=py38
11
+ python : 3.8
12
+ dist : xenial
13
+ sudo : true
9
14
- name : Unit tests with Python 3.7
10
15
env : TOXENV=py37
11
16
python : 3.7
19
24
- " $HOME/.cache/pip"
20
25
- " $TRAVIS_BUILD_DIR/.tox"
21
26
install :
22
- - pip install "poetry>=1.0.0a5 "
27
+ - pip install "poetry>=1.0.0 "
23
28
- poetry install
24
29
script :
25
30
- tox -e $TOXENV -- --cov-report term-missing --cov=graphql_relay
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ An overview of GraphQL in general is available in the
27
27
[ README] ( https://github.com/graphql-python/graphql-core/blob/master/README.md ) for the
28
28
[ Specification for GraphQL] ( https://github.com/graphql-python/graphql-core ) .
29
29
30
- This library is designed to work with the
30
+ This library is designed to work with the
31
31
the [ GraphQL-Core] ( https://github.com/graphql-python/graphql-core )
32
32
Python reference implementation of a GraphQL server.
33
33
@@ -52,7 +52,7 @@ When building a schema for [GraphQL](https://github.com/graphql-python/graphql-c
52
52
the provided library functions can be used to simplify the creation of Relay
53
53
patterns.
54
54
55
- ### Connections
55
+ ### Connections
56
56
57
57
Helper functions are provided for both building the GraphQL types
58
58
for connections and for implementing the ` resolver ` method for fields
@@ -261,5 +261,5 @@ Python versions and perform all additional source code checks.
261
261
You can also restrict tox to an individual environment, like this:
262
262
263
263
``` sh
264
- petry run tox -e py37
264
+ poetry run tox -e py37
265
265
```
You can’t perform that action at this time.
0 commit comments