Skip to content

Commit 4f2703c

Browse files
authored
Add Python 3.11 support (#320)
1 parent 1e2001f commit 4f2703c

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python: ["3.7", "3.8", "3.9", "3.10"]
14+
python: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
1515
os: [ubuntu-latest, windows-latest]
1616
include:
1717
- python: "3.7"
@@ -22,6 +22,8 @@ jobs:
2222
tox_env: "py39"
2323
- python: "3.10"
2424
tox_env: "py310"
25+
- python: "3.11-dev"
26+
tox_env: "py311"
2527

2628
steps:
2729
- uses: actions/checkout@v3

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"Programming Language :: Python :: 3.8",
3434
"Programming Language :: Python :: 3.9",
3535
"Programming Language :: Python :: 3.10",
36+
"Programming Language :: Python :: 3.11",
3637
"Programming Language :: Python :: 3 :: Only",
3738
"Topic :: Software Development :: Testing",
3839
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.5.3
3-
envlist = py{37,38,39,310}, norewrite
3+
envlist = py{37,38,39,310,311}, norewrite
44

55
[testenv]
66
passenv = USER USERNAME

0 commit comments

Comments
 (0)