8000 Update poetry, limit some more dependencies · graphql-python/graphql-core@db47950 · GitHub
[go: up one dir, main page]

Skip to content

Commit db47950

Browse files
committed
Update poetry, limit some more dependencies
1 parent 8158da5 commit db47950

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ cache:
2424
- "$HOME/.cache/pip"
2525
- "$TRAVIS_BUILD_DIR/.tox"
2626
install:
27-
- pip install "poetry>=1.0.0b7"
27+
- pip install "poetry>=1.0.0b8"
2828
- poetry install
2929
script:
3030
- tox -e $TOXENV -- --cov-report term-missing --cov=graphql

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,26 +32,26 @@ packages = [
3232
python = "^3.6"
3333

3434
[tool.poetry.dev-dependencies]
35-
pytest = "^5"
36-
pytest-asyncio = ">=0.10"
35+
pytest = "^5.3"
36+
pytest-asyncio = ">=0.10,<1"
3737
pytest-benchmark = "^3.2"
3838
pytest-cov = "^2.8"
39-
pytest-describe = ">=0.12"
39+
pytest-describe = ">=0.12,<1"
4040
pyyaml = "^5.1"
41-
black = ">=19.10b0"
41+
black = "19.10b0"
4242
flake8 = "^3.7"
4343
mypy = ">=0.750,<0.760"
4444
codecov = "^2"
4545
sphinx = "^2.2"
46-
sphinx_rtd_theme = ">=0.4"
47-
check-manifest = ">=0.40"
48-
bump2version = ">=0.5"
46+
sphinx_rtd_theme = ">=0.4,<1"
47+
check-manifest = ">=0.40,<1"
48+
bump2version = ">=0.5,<1"
4949
tox = "^3.14"
5050

5151
[tool.black]
5252
target-version = ['py36', 'py37', 'py38']
5353

5454
[build-system]
55-
requires = ["poetry>=1.0.0b7"]
55+
requires = ["poetry>=1.0.0b8"]
5656
build-backend = "poetry.masonry.api"
5757

tox.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ envlist = py{36,37,38}, black, flake8, mypy, docs, manifest
33

44
[testenv:black]
55
basepython = python3.7
6-
deps = black>=19.10b0
6+
deps = black==19.10b0
77
commands =
88
black src tests setup.py --check
99

@@ -23,24 +23,24 @@ commands =
2323
basepython = python3.7
2424
deps =
2525
sphinx>=2.2,<3
26-
sphinx_rtd_theme>=0.4
26+
sphinx_rtd_theme>=0.4,<1
2727
commands =
2828
sphinx-build -b html -nEW docs docs/_build/html
2929

3030
[testenv:manifest]
3131
basepython = python3.7
32-
deps = check-manifest>=0.40
32+
deps = check-manifest>=0.40,<1
3333
commands =
3434
check-manifest -v
3535

3636
[testenv]
3737
setenv =
3838
PYTHONPATH = {toxinidir}
3939
deps =
40-
pytest>=5.0,<6
41-
pytest-asyncio>=0.10
40+
pytest>=5.3,<5.4
41+
pytest-asyncio>=0.10,<1
4242
pytest-benchmark>=3.2,<4
4343
pytest-cov>=2.8,<3
44-
pytest-describe>=0.12
44+
pytest-describe>=0.12,<1
4545
commands =
4646
pytest tests {posargs}

0 commit comments

Comments
 (0)
0