From 95f313eab718ec55da327179a8b25a52e080c97b Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sun, 1 Nov 2020 08:25:22 -0800 Subject: [PATCH] Test and document support for Python 3.9 release --- .travis.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 47f5bdb11ca..fdeec011268 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,7 @@ jobs: env: - TOXENV=du16 - PYTEST_ADDOPTS="--cov ./ --cov-append --cov-config setup.cfg" - - python: '3.9-dev' + - python: '3.9' env: - TOXENV=py39 diff --git a/setup.py b/setup.py index bf3d7dc6ec0..a5f48afa607 100644 --- a/setup.py +++ b/setup.py @@ -202,6 +202,7 @@ def _run_domain_js(self, domain): 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Framework :: Setuptools Plugin',