Skip to content

Commit aee850a

Browse files
committed
Add official support for Python 3.11
1 parent 66993ec commit aee850a

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.github/workflows/test.yml

+6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
- "py39-pytestlatest"
2424
- "py310-pytestlatest"
2525
- "py310-pytestmain"
26+
- "py311-pytestlatest"
27+
- "py311-pytestmain"
2628
- "py310-psutil"
2729
- "py310-setproctitle"
2830

@@ -38,6 +40,10 @@ jobs:
3840
python: "3.10"
3941
- tox_env: "py310-pytestmain"
4042
python: "3.10"
43+
- tox_env: "py311-pytestlatest"
44+
python: "3.11"
45+
- tox_env: "py311-pytestmain"
46+
python: "3.11"
4147
- tox_env: "py310-psutil"
4248
python: "3.10"
4349
- tox_env: "py310-setproctitle"

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ classifiers =
2828
Programming Language :: Python :: 3.8
2929
Programming Language :: Python :: 3.9
3030
Programming Language :: Python :: 3.10
31+
Programming Language :: Python :: 3.11
3132
license_file = LICENSE
3233
project_urls =
3334
Documentation=https://pytest-xdist.readthedocs.io/en/latest

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist=
33
linting
4-
py{37,38,39,310}-pytestlatest
4+
py{37,38,39,310,311}-pytestlatest
55
py310-pytestmain
66
py310-psutil
77
py310-setproctitle

0 commit comments

Comments
 (0)