Skip to content

Commit

Permalink
Add support for py313 (#1871)
Browse files Browse the repository at this point in the history
Co-authored-by: Sorin Sbarnea <[email protected]>
  • Loading branch information
abhikdps and ssbarnea authored Nov 5, 2024
1 parent bd9323b commit eeaedbf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: coactions/dynamic-matrix@v4
with:
min_python: "3.10"
max_python: "3.12"
max_python: "3.13"
default_python: "3.11" # used by jobs in other_names
other_names: |
lint
Expand Down Expand Up @@ -119,6 +119,7 @@ jobs:
check:
if: always()
permissions:
contents: read
id-token: write
checks: read
needs:
Expand Down Expand Up @@ -151,7 +152,7 @@ jobs:

- name: Check for expected number of coverage.xml reports
run: |
JOBS_PRODUCING_COVERAGE=5
JOBS_PRODUCING_COVERAGE=6
if [ "$(find . -name coverage.xml | wc -l | bc)" -ne "${JOBS_PRODUCING_COVERAGE}" ]; then
echo "::error::Number of coverage.xml files was not the expected one (${JOBS_PRODUCING_COVERAGE}): $(find . -name coverage.xml |xargs echo)"
exit 1
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ classifiers = [
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
"Programming Language :: Python :: 3.13",
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
]
Expand Down

0 comments on commit eeaedbf

Please sign in to comment.