Skip to content

Commit 3efddc4

Browse files
committed
Change default tox environment to Python 3.12 in Fedora 40
1 parent cbc635d commit 3efddc4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ This GitHub action tests a checked-out Python project using
1313
- uses: fedora-python/tox-github-action
1414
with:
1515
# The tox environment to run
16-
# Default: py311 (subject to change as new Python releases come out)
17-
tox_env: py311
16+
# Default: py312 (subject to change as new Python releases come out)
17+
tox_env: py312
1818
```
1919
2020
Add the action to your workflow file, e.g. `.github/workflows/main.yml`,
@@ -66,6 +66,7 @@ referred to as the "major version") represents the release of Fedora used in the
6666

6767
* Uses Fedora 40 as the base container image.
6868
* Python 3.7 is no longer available.
69+
* Python 3.12 is now the default tox environment if none is configured.
6970

7071
### v39.0
7172

action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Runs tests with Tox
33
inputs:
44
tox_env:
55
required: true
6-
default: 'py311'
6+
default: 'py312'
77
description: Tox environment to run the tests on
88
dnf_install:
99
required: false

0 commit comments

Comments
 (0)