Skip to content

Commit 788e91b

Browse files
committed
Add testing for Python 3.11-dev
1 parent d56711d commit 788e91b

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
strategy:
6161
fail-fast: false
6262
matrix:
63-
python: ["3.7", "3.8", "3.9", "3.10"]
63+
python: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
6464
include:
6565
- python: "3.7"
6666
tox_env: "py37"
@@ -70,11 +70,13 @@ jobs:
7070
tox_env: "py39"
7171
- python: "3.10"
7272
tox_env: "py310"
73+
- python: "3.11-dev"
74+
tox_env: "py311"
7375

7476
steps:
75-
- uses: actions/checkout@v1
77+
- uses: actions/checkout@v2
7678
- name: Set up Python
77-
uses: actions/setup-python@v1
79+
uses: actions/setup-python@v2
7880
with:
7981
python-version: ${{ matrix.python }}
8082
- name: Download compiled tests

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 :: C++",
3738
"Topic :: Software Development :: Quality Assurance",
3839
"Topic :: Software Development :: Testing",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{37,38,39,310}
2+
envlist = py{37, 38, 39, 310, 311}
33

44
[testenv]
55
deps=

0 commit comments

Comments
 (0)