Skip to content

Commit

Permalink
Add Python 3.11 and 3.12 Test Coverage (#348)
Browse files Browse the repository at this point in the history
* workflows: add test coverage for Python 3.12

Python 3.12 has been released for a while, add test coverage support in
our workflows.

* tox: add environment for Python 3.11

Create a Python 3.11 test environment.

* tox: add environment for Python 3.12

Create a Python 3.12 test environment.
  • Loading branch information
rschwebel committed May 28, 2024
1 parent bbffd9b commit 3e574a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- '3.9'
- '3.10'
- '3.11'
- '3.12'

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
# These should match the GitHub Actions env list
envlist = py27,py37,py38,py39,py310
envlist = py27,py37,py38,py39,py310,py311,py312

[testenv]
install_command = pip install {opts} {packages}
Expand Down

0 comments on commit 3e574a5

Please sign in to comment.