Skip to content

Commit

Permalink
update: add testing with Python 3.13 (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda authored Dec 16, 2024
1 parent c3d7630 commit e428402
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ on:
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
default: |
{
"os": ["ubuntu-20.04", "macos-11", "windows-2022"],
"python-version": ["3.9", "3.12"]
"os": ["ubuntu-22.04", "macos-13", "windows-2022"],
"python-version": ["3.9", "3.13"]
}
env-vars:
description: "custom environment variables in json format"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-22.04", "macos-13", "windows-2022"]
python-version: ["3.9", "3.10", "3.12"]
python-version: ["3.9", "3.11", "3.13"]
requires: ["oldest", "latest"]
exclude:
- { requires: "oldest", python-version: "3.12" }
- { requires: "oldest", python-version: "3.13" }
timeout-minutes: 35
steps:
- name: Checkout 🛎
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-use-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
}
testing-matrix: |
{
"os": ["ubuntu-22.04", "macos-13", "windows-2022"],
"python-version": ["3.9", "3.12"]
"os": ["ubuntu-22.04", "macos-14", "windows-2022"],
"python-version": ["3.9", "3.13"]
}
check-package-extras:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,6 @@ def _requirement_extras(path_req: str = _PATH_REQUIRE) -> dict:
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
)

0 comments on commit e428402

Please sign in to comment.