Skip to content

Commit

Permalink
Add support for Python 3.13.
Browse files Browse the repository at this point in the history
Closes #36.
  • Loading branch information
kpfleming committed May 10, 2024
1 parent bd5cff2 commit 27aa45e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ for emergencies).

## [Unreleased]

### Added

- Added testing against Python 3.13 (beta).

## [24.1.1] - 2024-02-17

No content changes, tag created for updated docsite publishing workflow.
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ commands_pre=
commands=
ansible-lint --fix=all --strict --profile production -v

[testenv:py3{11,12}-ci-action]
[testenv:py3{11,12,13}-ci-action]
deps=
{[galaxy-setup]deps}
setenv=
Expand Down
2 changes: 1 addition & 1 deletion workflow-support/make_ci_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ image_name=${1}; shift
lint_deps=(shellcheck)
publish_deps=(yq)

toxenvs=(lint-action py3{11,12}-ci-action publish-action)
toxenvs=(lint-action py3{11,12,13}-ci-action publish-action)

c=$(buildah from "${base_image}")

Expand Down
2 changes: 1 addition & 1 deletion workflow-support/versions.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
versions={"python": ["py311", "py312"]}
versions={"python": ["py311", "py312", "py313"]}

0 comments on commit 27aa45e

Please sign in to comment.