summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-12-19 22:55:07 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-12-19 22:55:07 -0500
commit213ea7674be6ce7334f4204d299d8593c404f095 (patch)
treea9bcd42111967d06d708a4258151a7070d30f401
parent442cdeb1e4c616dedec8c61abaf8d4e93ca154ba (diff)
downloadcherrypy-213ea7674be6ce7334f4204d299d8593c404f095.tar.gz
Bump minimum requirement to Python 2.6
-rw-r--r--CHANGES.txt6
-rw-r--r--setup.py7
2 files changed, 9 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index f091870b..898e5a1f 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,4 +1,10 @@
-----
+4.0.0
+-----
+
+* Drop support for Python 2.5 and earlier.
+
+-----
3.8.2
-----
diff --git a/setup.py b/setup.py
index 0dc98edb..c6cf6153 100644
--- a/setup.py
+++ b/setup.py
@@ -49,13 +49,12 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
- "Programming Language :: Python :: 2.3",
- "Programming Language :: Python :: 2.4",
- "Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
+ "Programming Language :: Python :: 3.4",
+ "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: Jython",
@@ -113,7 +112,7 @@ cmd_class = dict(
if sys.version_info >= (3, 0):
required_python_version = '3.0'
else:
- required_python_version = '2.3'
+ required_python_version = '2.6'
###############################################################################
# end arguments for setup