Skip to content

Commit 54f7dcb

Browse files
authored
chore(deps): update pytest 9.0 and python 3.13/3.14 (#250)
Signed-off-by: Morgan Epp <60796713+epmog@users.noreply.github.com>
1 parent c9c6f6c commit 54f7dcb

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/code_quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
os: [ubuntu-latest, windows-latest, macos-latest]
21-
python-version: ['3.9', '3.10', '3.11', '3.12']
21+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
2222
uses: OpenJobDescription/.github/.github/workflows/reusable_python_build.yml@mainline
2323
with:
2424
os: ${{ matrix.os }}

hatch.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ lint = [
2121
]
2222

2323
[[envs.all.matrix]]
24-
python = ["3.9", "3.10", "3.11"]
24+
python = ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2525

2626
[envs.release]
2727
detached = true

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ classifiers = [
2121
"Programming Language :: Python :: 3.10",
2222
"Programming Language :: Python :: 3.11",
2323
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
25+
"Programming Language :: Python :: 3.14",
2426
"Operating System :: POSIX :: Linux",
2527
"Operating System :: Microsoft :: Windows",
2628
"Operating System :: MacOS",
@@ -88,7 +90,6 @@ disallow_incomplete_defs = false
8890
disallow_untyped_calls = false
8991
show_error_context = true
9092
strict_equality = false
91-
python_version = 3.9
9293
warn_redundant_casts = true
9394
warn_unused_configs = true
9495
warn_unused_ignores = false

requirements-testing.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
coverage[toml] == 7.*
22
coverage-conditional-plugin == 0.9.0
3-
pytest == 8.4.*
3+
pytest == 9.0.*; python_version >= '3.10'
4+
pytest == 8.4.*; python_version < '3.10'
45
pytest-cov == 7.0.*
56
pytest-timeout == 2.4.*
67
pytest-xdist == 3.8.*

0 commit comments

Comments
 (0)