Skip to content

Commit 7f193bc

Browse files
committed
chore(deps): update pytest and python version
Signed-off-by: Morgan Epp <60796713+epmog@users.noreply.github.com>
1 parent c9c6f6c commit 7f193bc

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
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 & 0 deletions
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",

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)