From 8af513f093e24790ad58c1e2921dcbf0a73d76f7 Mon Sep 17 00:00:00 2001 From: Matthew Feckert Date: Tue, 5 Nov 2019 11:18:13 +1030 Subject: [PATCH] Add Python 3.8 to supported runtimes in setup.py Also Python 3.6 as it was missing --- setup.py | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/setup.py b/setup.py index d89dd5b..410cc8c 100644 --- a/setup.py +++ b/setup.py @@ -28,18 +28,20 @@ tests_require=["pytest>=3.9"], extras_require=extras_require, classifiers=[ - # "Development Status :: 3 - Alpha", - # "Development Status :: 4 - Beta", - # "Development Status :: 5 - Production/Stable", - # "Development Status :: 6 - Mature", - "Intended Audience :: Developers", - "Intended Audience :: Information Technology", - "Programming Language :: Python", - "Programming Language :: Python :: 3.7", - "Topic :: Software Development", - "Topic :: Utilities", + # "Development Status :: 3 - Alpha", + # "Development Status :: 4 - Beta", + # "Development Status :: 5 - Production/Stable", + # "Development Status :: 6 - Mature", + "Intended Audience :: Developers", + "Intended Audience :: Information Technology", + "Programming Language :: Python", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Topic :: Software Development", + "Topic :: Utilities", ], data_files=[], python_requires='>=3.6', platforms="Any", - ) +)