From 9a8b87236660c10af7ea3a15d57d12c61f34cdff Mon Sep 17 00:00:00 2001 From: Andreas Maier Date: Mon, 29 Mar 2021 21:34:35 +0200 Subject: [PATCH] Updated status to Alpha and added py39 to setup Signed-off-by: Andreas Maier --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9b017fb..1262966 100755 --- a/setup.py +++ b/setup.py @@ -115,7 +115,7 @@ def read_file(a_file): # Keep these Python versions in sync with secure_server_access/__init__.py python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', classifiers=[ - 'Development Status :: 2 - Pre-Alpha', + 'Development Status :: 3 - Alpha', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', @@ -128,6 +128,7 @@ def read_file(a_file): 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Topic :: Software Development :: Libraries :: Python Modules', ] )