summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2021-06-11 11:08:25 +0300
committerHugo van Kemenade <hugovk@users.noreply.github.com>2021-06-12 11:21:57 +0300
commitd767a36d29aadcae26840705afce0417a7db0ad5 (patch)
tree7991bbe5ac224fd81ad3076344992584b54ed060
parent5acc659aa4c9a7a2fcbd0448421fcb2a3eb00298 (diff)
downloadtesttools-d767a36d29aadcae26840705afce0417a7db0ad5.tar.gz
Add support for Python 3.9
-rw-r--r--NEWS3
-rwxr-xr-xscripts/all-pythons2
-rw-r--r--setup.cfg1
3 files changed, 5 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index e80750c..20dd229 100644
--- a/NEWS
+++ b/NEWS
@@ -9,6 +9,9 @@ NEXT
Improvements
------------
+* Add support for Python 3.9.
+ (Hugo van Kemenade)
+
* The skip, skipIf, and skipUnless decorators can now be used as class
decorators as well as test method decorators, just as they can in
unittest.
diff --git a/scripts/all-pythons b/scripts/all-pythons
index e131f6d..6996a44 100755
--- a/scripts/all-pythons
+++ b/scripts/all-pythons
@@ -89,5 +89,5 @@ def now():
if __name__ == '__main__':
sys.path.append(ROOT)
result = TestProtocolClient(sys.stdout)
- for version in '3.5 3.6 3.7 3.8'.split():
+ for version in '3.5 3.6 3.7 3.8 3.9'.split():
run_for_python(version, result, sys.argv[1:])
diff --git a/setup.cfg b/setup.cfg
index 87f6789..f252785 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -16,6 +16,7 @@ classifier =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
+ Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy