From 1f779491022ef3549ac3dc23bb78d6d7a8122390 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Sun, 10 Oct 2021 21:16:26 +0300 Subject: Add support for Python 3.10 --- .travis.yml | 1 + pyproject.toml | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6d6442c..ca2f095 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,7 @@ python: - "3.7" - "3.8" - "3.9" + - "3.10-dev" install: - pip install -U pip setuptools # https://github.com/pypa/virtualenv/issues/1630 diff --git a/pyproject.toml b/pyproject.toml index d5fd5ab..aad9df8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,7 @@ classifiers = [ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Security :: Cryptography", diff --git a/tox.ini b/tox.ini index 259849d..62bd0f7 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] # Environment changes have to be manually synced with '.travis.yml'. -envlist = py36,p37,p38,p39 +envlist = py36,p37,p38,p39,py310 [pytest] addopts = -v --cov rsa --cov-report term-missing -- cgit v1.2.1