From d9f1e69997f1fdc9ed6599c977fdc8a20815fde3 Mon Sep 17 00:00:00 2001 From: linkmauve Date: Sat, 1 Aug 2020 20:59:59 +0200 Subject: [PATCH] Stop advertising python2 support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit python2 support got removed in dab5555503b07fe3e1f730a2bdebd97f4b535c8c, this shouldn’t be advertised anymore. --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 9457291..0b5e4c7 100644 --- a/setup.py +++ b/setup.py @@ -21,8 +21,6 @@ setup_requires = ['setuptools_scm'] classifiers = """ Environment :: Console License :: OSI Approved :: GNU General Public License v3 (GPLv3) -Programming Language :: Python :: 2 -Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 Programming Language :: Python :: 3.3 Programming Language :: Python :: 3.4 @@ -46,7 +44,7 @@ setup( packages=packages, package_data={'': ['LICENSE', 'README.md']}, package_dir={'colout': 'colout'}, - python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*', + python_requires='>=3.3', setup_requires=setup_requires, include_package_data=True, install_requires=requires,