Skip to content

Commit 5d8a018

Browse files
committed
update dependencies
1 parent 26d298d commit 5d8a018

File tree

6 files changed

+16
-24
lines changed

6 files changed

+16
-24
lines changed

.github/workflows/tests.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
include:
27+
- {name: '3.12-dev', python: '3.12-dev', tox: py312}
2728
- {name: '3.11', python: '3.11', tox: py311}
2829
- {name: 'Lowest', python: '3.11', tox: py311-min}
2930
- {name: '3.10', python: '3.10', tox: py310}
3031
- {name: '3.9', python: '3.9', tox: py39}
3132
- {name: '3.8', python: '3.8', tox: py38}
3233
- {name: '3.7', python: '3.7', tox: py37}
33-
- {name: 'Typing', python: '3.11', os: ubuntu-latest, tox: typing}
34+
- {name: 'Typing', python: '3.11', tox: typing}
3435
steps:
3536
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
3637
- uses: actions/setup-python@5ccb29d8773c3f3f653e1705f474dfaa8a06a912

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ ci:
33
autoupdate_schedule: monthly
44
repos:
55
- repo: https://github.com/asottile/pyupgrade
6-
rev: v3.4.0
6+
rev: v3.7.0
77
hooks:
88
- id: pyupgrade
99
args: ["--py37-plus"]
1010
- repo: https://github.com/asottile/reorder-python-imports
11-
rev: v3.9.0
11+
rev: v3.10.0
1212
hooks:
1313
- id: reorder-python-imports
1414
files: "^(?!examples/)"

requirements/dev.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ coverage[toml]==7.2.7
2828
# pytest-cov
2929
distlib==0.3.6
3030
# via virtualenv
31-
filelock==3.12.0
31+
filelock==3.12.2
3232
# via
3333
# tox
3434
# virtualenv
@@ -40,13 +40,13 @@ pip-compile-multi==2.6.3
4040
# via -r requirements/dev.in
4141
pip-tools==6.13.0
4242
# via pip-compile-multi
43-
platformdirs==3.5.1
43+
platformdirs==3.8.0
4444
# via
4545
# tox
4646
# virtualenv
47-
pre-commit==3.3.2
47+
pre-commit==3.3.3
4848
# via -r requirements/dev.in
49-
pyproject-api==1.5.1
49+
pyproject-api==1.5.2
5050
# via tox
5151
pyproject-hooks==1.0.0
5252
# via build
@@ -56,9 +56,9 @@ pyyaml==6.0
5656
# via pre-commit
5757
toposort==1.10
5858
# via pip-compile-multi
59-
tox==4.6.0
59+
tox==4.6.3
6060
# via -r requirements/dev.in
61-
virtualenv==20.23.0
61+
virtualenv==20.23.1
6262
# via
6363
# pre-commit
6464
# tox

requirements/mypy.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ greenlet==2.0.2
99
# via sqlalchemy
1010
iniconfig==2.0.0
1111
# via pytest
12-
mypy==1.3.0
12+
mypy==1.4.1
1313
# via -r requirements/mypy.in
1414
mypy-extensions==1.0.0
1515
# via mypy
1616
packaging==23.1
1717
# via pytest
18-
pluggy==1.0.0
18+
pluggy==1.2.0
1919
# via pytest
20-
pytest==7.3.1
20+
pytest==7.4.0
2121
# via -r requirements/mypy.in
22-
sqlalchemy==2.0.15
22+
sqlalchemy==2.0.17
2323
# via -r requirements/mypy.in
2424
typing-extensions==4.6.3
2525
# via

requirements/tests.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ iniconfig==2.0.0
1111
# via pytest
1212
packaging==23.1
1313
# via pytest
14-
pluggy==1.0.0
14+
pluggy==1.2.0
1515
# via pytest
16-
pytest==7.3.1
16+
pytest==7.4.0
1717
# via -r requirements/tests.in

tox.ini

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[tox]
22
envlist =
33
py3{11,10,9,8,7}
4-
pypy39
54
py311-min
65
style
76
typing
@@ -24,19 +23,11 @@ skip_install = true
2423
commands = pre-commit run --all-files
2524

2625
[testenv:typing]
27-
package = wheel
28-
wheel_build_env = .pkg
29-
constrain_package_deps = true
30-
use_frozen_constraints = true
3126
deps = -r requirements/mypy.txt
3227
commands =
3328
mypy --python-version 3.7
3429
mypy --python-version 3.11
3530

3631
[testenv:docs]
37-
package = wheel
38-
wheel_build_env = .pkg
39-
constrain_package_deps = true
40-
use_frozen_constraints = true
4132
deps = -r requirements/docs.txt
4233
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html

0 commit comments

Comments
 (0)