summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hellkamp <marc@gsites.de>2020-01-02 15:41:19 +0100
committerMarcel Hellkamp <marc@gsites.de>2020-01-02 15:41:19 +0100
commitae0723163bfe9383e803d31311fa599ef03954ae (patch)
tree25a8b65f1688119183e911ae47c7cb46cb22b152
parent337384fd7345e4a801c5c6b852db1800a756f211 (diff)
downloadbottle-feature-deadsnakes.tar.gz
Removed classifiers for unsupported python versions from setup.pyfeature-deadsnakes
-rwxr-xr-xsetup.py6
1 files 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',