Skip to content

Commit 9492b61

Browse files
authored
chore: Support Python 3.11 (#841)
1 parent 79ed35b commit 9492b61

File tree

5 files changed

+7
-2
lines changed

5 files changed

+7
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- 'pypy-3.8'
2020
- '3.9'
2121
- '3.10'
22+
- '3.11'
2223
name: Build with Python ${{ matrix.python-version }}
2324
steps:
2425
- name: Checkout

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
matrix:
1717
python-version:
1818
- '3.6'
19-
- '3.8'
19+
- '3.11'
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ tox
445445

446446
The tox tests include code style checks via pep8 and pylint.
447447

448-
The tox tests are configured to run on Python 3.6, 3.7, 3.8, 3.9, 3.10
448+
The tox tests are configured to run on Python 3.6, 3.7, 3.8, 3.9, 3.10, 3.11
449449
and PyPy (our CI is configured to run PyPy tests on pypy-3.6, pypy-3.7, pypy-3.8).
450450

451451
# Questions, Bugs, and Feature Requests?

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
'Programming Language :: Python :: 3.8',
1818
'Programming Language :: Python :: 3.9',
1919
'Programming Language :: Python :: 3.10',
20+
'Programming Language :: Python :: 3.11',
2021
'Programming Language :: Python :: Implementation :: CPython',
2122
'Programming Language :: Python :: Implementation :: PyPy',
2223
'Operating System :: OS Independent',

tox.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ envlist =
1515
pypy38,
1616
py39,
1717
py310,
18+
py311,
1819
docs,
1920
coverage,
2021
integration-tests
@@ -29,6 +30,7 @@ python =
2930
pypy-3.8: pypy38
3031
3.9: py39
3132
3.10: py310
33+
3.11: py311
3234

3335
[testenv]
3436
commands =
@@ -83,6 +85,7 @@ recreate = True
8385
deps =
8486
wheel
8587
setuptools
88+
virtualenv<20.22.0
8689
allowlist_externals = rm
8790

8891
[testenv:py36-upload]

0 commit comments

Comments
 (0)