Skip to content
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
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,13 @@ Until version 0.4, this action always used the latest [fedora-python-tox](https:
image. Since version 34.0, the first number in the version (also sometimes
referred to as the "major version") represents the release of Fedora used in the image.

### v41.0

* Uses Fedora 41 as the base container image.
* Python 2.7 is no longer available.
* PyPy 3.11 is now available
* Python 3.13 is now the default tox environment if none is configured.

### v40.0

* Uses Fedora 40 as the base container image.
Expand Down
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Runs tests with Tox
inputs:
tox_env:
required: true
default: 'py312'
default: 'py313'
description: Tox environment to run the tests on
dnf_install:
required: false
Expand All @@ -16,7 +16,7 @@ inputs:

runs:
using: docker
image: docker://fedorapython/fedora-python-tox:f40
image: docker://fedorapython/fedora-python-tox:f41
env:
TOXENV: ${{ inputs.tox_env }}
DNF_INSTALL: ${{ inputs.dnf_install }}
Expand Down