From 60abac2d4c3512d21d028f3a835a16a11e4b681b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 12 May 2025 11:56:36 +0200 Subject: [PATCH] Update to Fedora 41 and Python 3.13 as the default --- README.md | 7 +++++++ action.yaml | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d7e64ce..96ce581 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/action.yaml b/action.yaml index 1290a74..3bcd02e 100644 --- a/action.yaml +++ b/action.yaml @@ -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 @@ -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 }}