Skip to content

Commit 462da90

Browse files
ziegenbergsybrenstuvel
authored andcommitted
Add support for Python 3.11
Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
1 parent 0b52e74 commit 462da90

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ python:
99
- "3.7"
1010
- "3.8"
1111
- "3.9"
12-
- "3.10-dev"
12+
- "3.10"
13+
- "3.11"
1314

1415
install:
1516
- pip install -U pip setuptools # https://github.com/pypa/virtualenv/issues/1630

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers = [
2020
"Programming Language :: Python :: 3.8",
2121
"Programming Language :: Python :: 3.9",
2222
"Programming Language :: Python :: 3.10",
23+
"Programming Language :: Python :: 3.11",
2324
"Programming Language :: Python :: Implementation :: CPython",
2425
"Programming Language :: Python :: Implementation :: PyPy",
2526
"Topic :: Security :: Cryptography",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
# Environment changes have to be manually synced with '.travis.yml'.
3-
envlist = py37,py38,py39,py310
3+
envlist = py37,py38,py39,py310,py311
44
isolated_build = True
55

66
[pytest]

0 commit comments

Comments
 (0)