From fff691b4cbbb2d5f7a24f1ddfe71f7b8fe724895 Mon Sep 17 00:00:00 2001 From: Wassilios Lytras Date: Thu, 6 Jan 2022 14:25:14 +0100 Subject: [PATCH] Adding Python 3.9 and 3.10. --- .travis.yml | 2 ++ setup.py | 4 +++- tox.ini | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7def229..6c6a230 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,8 @@ language: python python: - '3.7' - '3.8' + - '3.9' + - '3.10.1' install: - pip install -e ".[tests]" script: diff --git a/setup.py b/setup.py index 4318d32..b28be61 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ install_requires = [ "asn1crypto==1.4.0", "oscrypto==1.2.1", - "pyOpenSSL==20.0.1", + "pyOpenSSL==21.0.0", ] tests_require = [ @@ -37,6 +37,8 @@ "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Topic :: Security :: Cryptography", "Topic :: Communications", ], diff --git a/tox.ini b/tox.ini index f209c38..c1f1f9f 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py37, py38 +envlist = py37, py38, py39, py310 [testenv] commands = {envpython} setup.py test