Skip to content
This repository was archived by the owner on Apr 20, 2025. It is now read-only.

Commit 1f77949

Browse files
hugovksybrenstuvel
authored andcommitted
Add support for Python 3.10
1 parent 483700a commit 1f77949

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ python:
1010
- "3.7"
1111
- "3.8"
1212
- "3.9"
13+
- "3.10-dev"
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
@@ -19,6 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.7",
2020
"Programming Language :: Python :: 3.8",
2121
"Programming Language :: Python :: 3.9",
22+
"Programming Language :: Python :: 3.10",
2223
"Programming Language :: Python :: Implementation :: CPython",
2324
"Programming Language :: Python :: Implementation :: PyPy",
2425
"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 = py36,p37,p38,p39
3+
envlist = py36,p37,p38,p39,py310
44

55
[pytest]
66
addopts = -v --cov rsa --cov-report term-missing

0 commit comments

Comments
 (0)