Skip to content

Commit

Permalink
Add test runs with python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
dcermak committed Nov 8, 2024
1 parent 89ebe71 commit 52e7615
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
container_runtime: ["podman", "docker"]
update_runtime: [ true, false ]
without_buildah: [ false ]
Expand Down Expand Up @@ -137,13 +137,17 @@ jobs:
python_version: "3.12"
update_runtime: true
without_buildah: false
- container_runtime: "docker"
python_version: "3.13"
update_runtime: true
without_buildah: false

include:
- python_version: "3.12"
- python_version: "3.13"
container_runtime: "podman"
update_runtime: true
without_buildah: true
- python_version: "3.12"
- python_version: "3.13"
container_runtime: "podman"
update_runtime: false
without_buildah: true
Expand Down Expand Up @@ -243,7 +247,7 @@ jobs:
fail-fast: false
matrix:
os_version: ["ubuntu-latest"]
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
include:
- os_version: "ubuntu-20.04"
python_version: "3.6"
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from nox_poetry import session


@session(python=["3.12", "3.11", "3.10", "3.9", "3.8", "3.7", "3.6"])
@session(python=["3.13", "3.12", "3.11", "3.10", "3.9", "3.8", "3.7", "3.6"])
@nox.parametrize(
"container_runtime",
[nox.param(runtime, id=runtime) for runtime in ("podman", "docker")],
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing"
]
Expand Down

0 comments on commit 52e7615

Please sign in to comment.