From 7448085100dcd1bd1b869bdaf130eb28285e7012 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Thu, 10 Dec 2020 15:24:23 -0500 Subject: [PATCH] feat: add Python 3.9 support Closes #654. --- noxfile.py | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index b92f4939d..ed00c9624 100644 --- a/noxfile.py +++ b/noxfile.py @@ -75,7 +75,7 @@ def blacken(session): session.run("black", *BLACK_PATHS) -@nox.session(python=["3.6", "3.7", "3.8"]) +@nox.session(python=["3.6", "3.7", "3.8", "3.9"]) def unit(session): session.install(*TEST_DEPENDENCIES) session.install(*(ASYNC_DEPENDENCIES)) diff --git a/setup.py b/setup.py index d599ecc17..8cc4115ce 100644 --- a/setup.py +++ b/setup.py @@ -59,6 +59,7 @@ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License",