From 6e9cd139a610a7163de1ba870ad9ef29601fb687 Mon Sep 17 00:00:00 2001 From: Brad Solomon Date: Thu, 23 Jan 2020 09:05:07 -0500 Subject: [PATCH] Clean up Python-version related PyPI classifiers (#841) - Removes 'Programming Language :: Python :: 3.5' per the README, which specifies 'Python version 3.6 or greater is required.' - Adds 'Programming Language :: Python :: 3 :: Only' in place --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4392270c..2189469b 100644 --- a/setup.py +++ b/setup.py @@ -92,7 +92,7 @@ setup( classifiers=[ 'Development Status :: 5 - Production/Stable', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Environment :: Console',