Skip to content

Commit 84a6092

Browse files
committed
Support Python 3.8 and update dependencies
1 parent cd23c26 commit 84a6092

File tree

7 files changed

+387
-130
lines changed

7 files changed

+387
-130
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.0.0a1
2+
current_version = 3.0.0a2
33
commit = False
44
tag = False
55

.travis.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ matrix:
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
@@ -19,7 +24,7 @@ cache:
1924
- "$HOME/.cache/pip"
2025
- "$TRAVIS_BUILD_DIR/.tox"
2126
install:
22-
- pip install "poetry>=1.0.0a5"
27+
- pip install "poetry>=1.0.0"
2328
- poetry install
2429
script:
2530
- tox -e $TOXENV -- --cov-report term-missing --cov=graphql_relay

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
3131
the [GraphQL-Core](https://github.com/graphql-python/graphql-core)
3232
Python reference implementation of a GraphQL server.
3333

@@ -52,7 +52,7 @@ When building a schema for [GraphQL](https://github.com/graphql-python/graphql-c
5252
the provided library functions can be used to simplify the creation of Relay
5353
patterns.
5454

55-
### Connections
55+
### Connections
5656

5757
Helper functions are provided for both building the GraphQL types
5858
for connections and for implementing the `resolver` method for fields
@@ -261,5 +261,5 @@ Python versions and perform all additional source code checks.
261261
You 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
```

0 commit comments

Comments
 (0)