Skip to content

Commit

Permalink
Add support for py313 (#4388)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhikdps authored Nov 5, 2024
1 parent 79c3707 commit 4dc1085
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: coactions/dynamic-matrix@v4
with:
min_python: "3.10"
max_python: "3.12"
max_python: "3.13"
default_python: "3.10"
other_names: |
lint
Expand All @@ -42,6 +42,7 @@ jobs:
py311-devel
py310-lower
py312-lower
py313-devel
platforms: linux,macos
test-action:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -225,7 +226,7 @@ jobs:
- name: Set up Python # likely needed for coverage
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"

- run: pip3 install 'coverage>=7.5.1'

Expand All @@ -246,7 +247,7 @@ jobs:

- name: Check for expected number of coverage.xml reports
run: |
JOBS_PRODUCING_COVERAGE=8
JOBS_PRODUCING_COVERAGE=10
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 @@ -29,6 +29,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 :: 3 :: Only",
"Programming Language :: Python",
"Topic :: System :: Systems Administration",
Expand Down

0 comments on commit 4dc1085

Please sign in to comment.