Skip to content

Commit 0e0ef3f

Browse files
atombrellaphilpep
authored andcommitted
Add support for Python 3.10.
1 parent 13cc9d8 commit 0e0ef3f

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/tox.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
- tox_env: py37
2929
- tox_env: py38
3030
- tox_env: py39
31+
- tox_env: py310
3132
- tox_env: packaging
3233

3334
steps:

CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ To run only some selected tests::
2626
# Only tests matching 'ansible' on 4 processes with pytest-xdist
2727
tox -- -v -n 4 -k ansible test
2828

29-
# Only modules tests on Python 3 and spawn a pdb on error
30-
tox -e py3 -- -v --pdb test/test_modules.py
29+
# Only modules tests on a specific Python 3, e.g., 3.8 and spawn a pdb on error
30+
tox -e py38 -- -v --pdb test/test_modules.py
3131

3232

3333
Code style

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ classifiers =
2121
Programming Language :: Python :: 3.6
2222
Programming Language :: Python :: 3.7
2323
Programming Language :: Python :: 3.8
24+
Programming Language :: Python :: 3.9
25+
Programming Language :: Python :: 3.10
2426
Topic :: Software Development :: Testing
2527
Topic :: System :: Systems Administration
2628
Framework :: Pytest

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist=
33
lint
4-
py{36,37,38,39}
4+
py{36,37,38,39,310}
55
doc
66
packaging
77

0 commit comments

Comments
 (0)