Skip to content

Commit 335f3c5

Browse files
committed
Add support for Python 3.11
1 parent fed3a3e commit 335f3c5

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/tox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
py: ['3.8', '3.9', '3.10']
18+
py: ['3.8', '3.9', '3.10', '3.11']
1919

2020
steps:
2121
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
"Programming Language :: Python :: 3.8",
2626
"Programming Language :: Python :: 3.9",
2727
"Programming Language :: Python :: 3.10",
28+
"Programming Language :: Python :: 3.11",
2829
]
2930
requires-python = ">=3.8"
3031
dependencies = [

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ envlist =
33
py38
44
py39
55
py310
6+
py311
67
mypy
78
fmt-check
89
skip_missing_interpreters = True
@@ -48,3 +49,4 @@ python =
4849
3.8 = py38, mypy
4950
3.9 = py39, mypy
5051
3.10 = py310, mypy, fmt-check
52+
3.11 = py311

0 commit comments

Comments
 (0)