summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOz N Tiram <oz.tiram@gmail.com>2020-09-16 13:00:28 +0200
committerMarcel Hellkamp <marc@gsites.de>2020-12-31 16:40:56 +0100
commit0d2fc452ff453676b0f84e53d5b70c212109f6d8 (patch)
tree14e9cc8fce41d865eea7bb364e501658f0220452
parent7d7fb55f86ba71b853fdd81f7fe8342ff6edb809 (diff)
downloadbottle-0d2fc452ff453676b0f84e53d5b70c212109f6d8.tar.gz
Drop Python version 3.5
This version is EOL since 2020-09-05.
-rwxr-xr-xsetup.py3
-rw-r--r--tox.ini2
2 files changed, 2 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index aa3b3ab..6a3e73c 100755
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ 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.5+ to use bottle.")
+ raise NotImplementedError("Sorry, you need at least Python 2.7 or Python 3.6+ to use bottle.")
import bottle
@@ -33,7 +33,6 @@ setup(name='bottle',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
diff --git a/tox.ini b/tox.ini
index bf52891..a1b674b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py27,py35,py36,py37,py38,py39,py27-most
+envlist = py27,py36,py37,py38,py39,py27-most
[testenv]
deps=Mako