Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for py313 #416

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .config/requirements-test.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
coverage
pip
pytest-mock
pytest-plus>=0.6.1
pytest>=7.2.0
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: coactions/dynamic-matrix@v4
with:
min_python: "3.9"
max_python: "3.12"
max_python: "3.13"
default_python: "3.10"
other_names: |
lint
Expand All @@ -37,6 +37,7 @@ jobs:
py312-ansible216
py312-ansible217
py312-devel
py313-devel
smoke
platforms: linux,macos
macos: minmax
Expand Down Expand Up @@ -149,7 +150,7 @@ jobs:

- name: Check for expected number of coverage.xml reports
run: |
JOBS_PRODUCING_COVERAGE=14
JOBS_PRODUCING_COVERAGE=16
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 @@ -28,6 +28,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",
"Topic :: System :: Systems Administration",
"Topic :: Software Development :: Bug Tracking",
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ skip_missing_interpreters = True
requires =
tox >= 4.6.3
tox-extra >= 2.0.1
tox-uv
setuptools >= 65.3.0 # editable installs

[testenv]
Expand Down Expand Up @@ -133,6 +134,7 @@ description =
Build package, verify metadata, install package and assert behavior when ansible is missing.
deps =
build >= 0.9.0
pip
twine >= 4.0.1
skip_install = true
# Ref: https://twitter.com/di_codes/status/1044358639081975813
Expand Down