Skip to content

Commit 07203c7

Browse files
committed
Update poetry and fix pyproject.toml
1 parent 8bec246 commit 07203c7

File tree

3 files changed

+84
-8
lines changed

3 files changed

+84
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ cache:
1919
- "$HOME/.cache/pip"
2020
- "$TRAVIS_BUILD_DIR/.tox"
2121
install:
22-
- pip install "poetry>=0.12.16"
22+
- pip install "poetry>=1.0.0a5"
2323
- poetry install
2424
script:
2525
- tox -e $TOXENV -- --cov-report term-missing --cov=src

poetry.lock

Lines changed: 76 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ version = "3.0.0a2"
44
description = """
55
GraphQL-core is a Python port of GraphQL.js,
66
the JavaScript reference implementation for GraphQL."""
7-
licese="MIT"
7+
license = "MIT"
88
authors = [
99
"Christoph Zwerschke <[email protected]>"
1010
]
11-
readme="README.md"
12-
homepage="https://github.com/graphql-python/graphql-core-next"
13-
repository="https://github.com/graphql-python/graphql-core-next"
14-
documentation="https://graphql-core-next.readthedocs.io/"
15-
keywords="graphql"
11+
readme = "README.md"
12+
homepage = "https://github.com/graphql-python/graphql-core-next"
13+
repository = "https://github.com/graphql-python/graphql-core-next"
14+
documentation = "https://graphql-core-next.readthedocs.io/"
15+
keywords = ["graphql"]
1616
classifiers = [
1717
"Development Status :: 5 - Production/Stable",
1818
"Intended Audience :: Developers",
@@ -49,6 +49,6 @@ tox = "^3.13"
4949
[tool.black]
5050
target-version = ['py36', 'py37', 'py38']
5151
[build-system]
52-
requires = ["poetry>=0.12.16"]
52+
requires = ["poetry>=1.0.0a5"]
5353
build-backend = "poetry.masonry.api"
5454

0 commit comments

Comments
 (0)