Skip to content

Commit d9efac0

Browse files
committed
chore: update pytest
1 parent 514fada commit d9efac0

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

.pre-commit-config.yaml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ repos:
1515
- id: trailing-whitespace
1616

1717
- repo: https://github.com/astral-sh/ruff-pre-commit
18-
rev: v0.14.3
18+
rev: v0.14.4
1919
hooks:
2020
- id: ruff
2121
args: ["--fix", "--show-fixes"]
@@ -45,14 +45,22 @@ repos:
4545
name: mypy 3.9
4646
exclude: docs|conftest.py
4747
args: ["--python-version=3.9"]
48+
additional_dependencies:
49+
- nox
50+
- pytest<9
51+
- types-setuptools
52+
- id: mypy
53+
name: mypy 3.10
54+
exclude: docs|conftest.py
55+
args: ["--python-version=3.10"]
4856
additional_dependencies:
4957
- nox
5058
- pytest
5159
- types-setuptools
5260
- id: mypy
53-
name: mypy 3.12
61+
name: mypy 3.14
5462
exclude: docs|conftest.py
55-
args: ["--python-version=3.12"]
63+
args: ["--python-version=3.14"]
5664
additional_dependencies:
5765
- nox
5866
- pytest

requirements-test.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
pytest==8.4.2 ; python_version >= '3.9'
2-
pytest==8.3.5 ; python_version < '3.9'
1+
pytest==9.0.0 ; python_version >= '3.10'
2+
pytest==8.4.2 ; python_version == '3.9'
3+
pytest==8.3.5 ; python_version == '3.8'
34
typing_extensions>=4.6.0

0 commit comments

Comments
 (0)