From d05758440b9a7b5d44944ff0b99c313f63d34535 Mon Sep 17 00:00:00 2001 From: Michael Howitz Date: Wed, 7 Oct 2020 14:07:27 +0200 Subject: [PATCH] Add support for Python 3.9. --- CHANGES.rst | 5 ++--- setup.py | 1 + 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 1a01e79..0ebb5e4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -21,9 +21,8 @@ Changes - Drop install dependency on ``setuptools``. (`#189 `_) -- Start supporting Python 3.9.0a5. (Be aware that this support currently only - makes RestrictedPython usable on Python 3.9. The security implications of - using Python 3.9 have not yet been checked.) +- Add support for Python 3.9 after checking the security implications of the + syntax changes made in that version. 5.0 (2019-09-03) diff --git a/setup.py b/setup.py index d912887..852c57d 100644 --- a/setup.py +++ b/setup.py @@ -53,6 +53,7 @@ def read(*rnames): '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', 'Topic :: Security', ],