From ae0723163bfe9383e803d31311fa599ef03954ae Mon Sep 17 00:00:00 2001 From: Marcel Hellkamp Date: Thu, 2 Jan 2020 15:41:19 +0100 Subject: Removed classifiers for unsupported python versions from setup.py --- setup.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index b0f5685..c701850 100755 --- a/setup.py +++ b/setup.py @@ -3,8 +3,8 @@ import sys from setuptools import setup -if sys.version_info < (2, 7): - raise NotImplementedError("Sorry, you need at least Python 2.7 or Python 3.4+ to use bottle.") +if sys.version_info < (3, 5): + raise NotImplementedError("Sorry, you need at least Python 3.5 to use bottle.") import bottle @@ -31,9 +31,7 @@ setup(name='bottle', 'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware', 'Topic :: Internet :: WWW/HTTP :: WSGI :: Server', 'Topic :: Software Development :: Libraries :: Application Frameworks', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', -- cgit v1.2.1