From 45585192e55287913ea9f5b637ed3540370a1a99 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Thu, 29 Oct 2020 16:40:40 -0700 Subject: [PATCH] Officially add Python 3.9 support (#71) This is equivalent to what we did for Python 3.8 at https://github.com/certbot/josepy/pull/52. * Officially add Python 3.9 support * Use 3.9-dev since 3.9 isn't available --- .travis.yml | 1 + setup.py | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1b92f9277..9b98ac159 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,7 @@ matrix: - python: "3.6" - python: "3.7" - python: "3.8" + - python: "3.9-dev" install: - pip install tox-travis codecov script: diff --git a/setup.py b/setup.py index 56be65b96..4854a14a4 100644 --- a/setup.py +++ b/setup.py @@ -67,6 +67,7 @@ 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Security', ], diff --git a/tox.ini b/tox.ini index 66bfd788e..2b4d9ea54 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = py27 - py3{6,7,8} + py3{6,7,8,9} [testenv] commands =