Skip to content

Commit ac65d16

Browse files
David Fritzschedavidfritzsche
authored andcommitted
Bump development dependencies
1 parent ec0b39c commit ac65d16

File tree

5 files changed

+129
-104
lines changed

5 files changed

+129
-104
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ decorators are extracted from the ast.
142142
* Add support for pytest 8 (no actual change, but declare support)
143143
([#46][i46], [#47][p47])
144144
* Update GitHub actions ([#48][p48])
145+
* Update development dependencies ([#49][p49])
145146

146147
## v0.1.1
147148

@@ -231,3 +232,4 @@ decorators are extracted from the ast.
231232
[p43]: https://github.com/davidfritzsche/pytest-mypy-testing/pull/43
232233
[p47]: https://github.com/davidfritzsche/pytest-mypy-testing/pull/47
233234
[p48]: https://github.com/davidfritzsche/pytest-mypy-testing/pull/48
235+
[p49]: https://github.com/davidfritzsche/pytest-mypy-testing/pull/49

constraints.txt

Lines changed: 46 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -6,67 +6,69 @@
66
#
77
# ./lock-requirements.sh
88
#
9-
attrs==22.2.0
9+
attrs==23.2.0
1010
binaryornot==0.4.4
11-
black==23.1.0
11+
black==24.2.0
1212
boolean-py==4.0
13-
build==0.10.0
13+
build==1.0.3
1414
bump2version==1.0.1
15-
certifi==2022.12.7
16-
chardet==5.1.0
17-
charset-normalizer==3.0.1
18-
click==8.1.3
19-
coverage==7.2.0
15+
certifi==2024.2.2
16+
chardet==5.2.0
17+
charset-normalizer==3.3.2
18+
click==8.1.7
19+
coverage==7.4.3
2020
dflit==2.3.0.1
2121
dflit-core==2.3.0.1
22-
distlib==0.3.6
23-
docutils==0.19
24-
exceptiongroup==1.1.0
25-
filelock==3.9.0
26-
flake8==6.0.0
27-
flake8-bugbear==23.2.13
28-
flake8-comprehensions==3.10.1
22+
distlib==0.3.8
23+
docutils==0.20.1
24+
exceptiongroup==1.2.0
25+
filelock==3.12.2
26+
flake8==7.0.0
27+
flake8-bugbear==24.2.6
28+
flake8-comprehensions==3.14.0
2929
flake8-html==0.4.3
3030
flake8-logging-format==0.9.0
3131
flake8-mutable==1.2.0
32-
flake8-pyi==23.1.2
32+
flake8-pyi==24.1.0
3333
fsfe-reuse==1.0.0
34-
idna==3.4
34+
idna==3.6
35+
importlib-metadata==6.7.0
3536
iniconfig==2.0.0
36-
invoke==2.0.0
37-
isort==5.12.0
38-
jinja2==3.1.2
39-
license-expression==30.1.0
40-
markupsafe==2.1.2
37+
invoke==2.2.0
38+
isort==5.13.2
39+
jinja2==3.1.3
40+
license-expression==30.2.0
41+
markupsafe==2.1.5
4142
mccabe==0.7.0
42-
mypy==1.0.1
43+
mypy==1.8.0
4344
mypy-extensions==1.0.0
44-
packaging==23.0
45-
pathspec==0.11.0
46-
pip==23.0.1
47-
pip-tools==6.12.2
48-
platformdirs==3.0.0
49-
pluggy==1.0.0
45+
packaging==23.2
46+
pathspec==0.12.1
47+
pip==23.1.2
48+
pip-tools==7.4.0
49+
platformdirs==4.0.0
50+
pluggy==1.2.0
5051
py==1.11.0
51-
pycodestyle==2.10.0
52-
pyflakes==3.0.1
53-
pygments==2.14.0
52+
pycodestyle==2.11.1
53+
pyflakes==3.2.0
54+
pygments==2.17.2
5455
pyproject-hooks==1.0.0
55-
pytest==7.2.1
56-
pytest-cov==4.0.0
57-
pytest-html==3.2.0
58-
pytest-metadata==2.0.4
56+
pytest==7.4.4
57+
pytest-cov==4.1.0
58+
pytest-html==4.1.1
59+
pytest-metadata==3.1.1
5960
python-debian==0.1.49
6061
pytoml==0.1.21
61-
requests==2.28.2
62-
reuse==1.1.2
63-
setuptools==67.4.0
62+
requests==2.31.0
63+
reuse==3.0.1
64+
setuptools==69.1.1
6465
six==1.16.0
6566
tomli==2.0.1
6667
tox==3.28.0
6768
tox-pyenv==1.1.0
68-
types-invoke==2.0.0.3
69-
typing-extensions==4.5.0
70-
urllib3==1.26.14
71-
virtualenv==20.19.0
72-
wheel==0.38.4
69+
types-invoke==2.0.0.10
70+
typing-extensions==4.7.1
71+
urllib3==2.2.1
72+
virtualenv==20.25.1
73+
wheel==0.42.0
74+
zipp==3.15.0

requirements.in

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-FileCopyrightText: David Fritzsche
22
# SPDX-License-Identifier: CC0-1.0
3-
black>=23,<24
3+
black >=24,<25
44
bump2version
55
coverage[toml]
66
dflit
@@ -13,13 +13,21 @@ flake8-pyi
1313
fsfe-reuse
1414
invoke
1515
isort
16-
mypy~=1.0
16+
mypy ~=1.8
17+
pip
1718
pip-tools
18-
pip>=20.3
19+
pytest <8
1920
pytest-cov
2021
pytest-html
21-
pytest~=7.2.1
22-
setuptools>=43
23-
tox < 4
22+
setuptools >=69
23+
tox <4
2424
tox-pyenv
2525
types-invoke
26+
27+
# to let the tox setup stay compatible with Python 3.7
28+
filelock <3.12.3
29+
importlib-metadata <6.8
30+
platformdirs <4.1
31+
pluggy <1.3
32+
typing-extensions <4.8
33+
zipp <3.16

0 commit comments

Comments
 (0)