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 11[bumpversion]
2- current_version = 3.0.0a1
2+ current_version = 3.0.0a2
33commit = False
44tag = False
55
Original file line number Diff line number Diff line change 66 python : 3.7
77 dist : xenial
88 sudo : true
9+ - name : Unit tests with Python 3.8
10+ env : TOXENV=py38
11+ python : 3.8
12+ dist : xenial
13+ sudo : true
914 - name : Unit tests with Python 3.7
1015 env : TOXENV=py37
1116 python : 3.7
1924 - " $HOME/.cache/pip"
2025 - " $TRAVIS_BUILD_DIR/.tox"
2126install :
22- - pip install "poetry>=1.0.0a5 "
27+ - pip install "poetry>=1.0.0 "
2328 - poetry install
2429script :
2530 - 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
2727[ README] ( https://github.com/graphql-python/graphql-core/blob/master/README.md ) for the
2828[ Specification for GraphQL] ( https://github.com/graphql-python/graphql-core ) .
2929
30- This library is designed to work with the
30+ This library is designed to work with the
3131the [ GraphQL-Core] ( https://github.com/graphql-python/graphql-core )
3232Python reference implementation of a GraphQL server.
3333
@@ -52,7 +52,7 @@ When building a schema for [GraphQL](https://github.com/graphql-python/graphql-c
5252the provided library functions can be used to simplify the creation of Relay
5353patterns.
5454
55- ### Connections
55+ ### Connections
5656
5757Helper functions are provided for both building the GraphQL types
5858for connections and for implementing the ` resolver ` method for fields
@@ -261,5 +261,5 @@ Python versions and perform all additional source code checks.
261261You can also restrict tox to an individual environment, like this:
262262
263263``` sh
264- petry run tox -e py37
264+ poetry run tox -e py37
265265```
You can’t perform that action at this time.
0 commit comments