Skip to content

Commit

Permalink
Add Python 3.11 support (#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
gruebel committed Oct 4, 2022
1 parent 1e2001f commit 4f2703c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.7", "3.8", "3.9", "3.10"]
python: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
os: [ubuntu-latest, windows-latest]
include:
- python: "3.7"
Expand All @@ -22,6 +22,8 @@ jobs:
tox_env: "py39"
- python: "3.10"
tox_env: "py310"
- python: "3.11-dev"
tox_env: "py311"

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -33,6 +33,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Testing",
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
minversion = 3.5.3
envlist = py{37,38,39,310}, norewrite
envlist = py{37,38,39,310,311}, norewrite

[testenv]
passenv = USER USERNAME
Expand Down

0 comments on commit 4f2703c

Please sign in to comment.