Skip to content

Commit 27c3055

Browse files
committed
Default to Python 3.11, not Python 3.8
1 parent 8a29d76 commit 27c3055

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 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: py38 (subject to change as new Python releases come out)
17-
tox_env: py38
16+
# Default: py311 (subject to change as new Python releases come out)
17+
tox_env: py311
1818
```
1919
2020
Add the action to your workflow file, e.g. `.github/workflows/main.yml`,

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: 'py38'
6+
default: 'py311'
77
description: Tox environment to run the tests on
88
dnf_install:
99
required: false

0 commit comments

Comments
 (0)