Skip to content

Commit

Permalink
Change default tox environment to Python 3.12 in Fedora 40
Browse files Browse the repository at this point in the history
  • Loading branch information
frenzymadness committed Nov 26, 2024
1 parent cbc635d commit 3efddc4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ This GitHub action tests a checked-out Python project using
- uses: fedora-python/tox-github-action
with:
# The tox environment to run
# Default: py311 (subject to change as new Python releases come out)
tox_env: py311
# Default: py312 (subject to change as new Python releases come out)
tox_env: py312
```
Add the action to your workflow file, e.g. `.github/workflows/main.yml`,
Expand Down Expand Up @@ -66,6 +66,7 @@ referred to as the "major version") represents the release of Fedora used in the

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

### v39.0

Expand Down
2 changes: 1 addition & 1 deletion 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: 'py311'
default: 'py312'
description: Tox environment to run the tests on
dnf_install:
required: false
Expand Down

0 comments on commit 3efddc4

Please sign in to comment.