summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-11-17 21:54:30 -0500
committerJason R. Coombs <jaraco@jaraco.com>2017-11-17 21:59:34 -0500
commit380255baac47f15e60167c29f9c7b9a569bde1dd (patch)
tree0ce5bb683945c8b077d61a96e8e52c88e55faca0 /setup.py
parent426f65b78dbf5cfa94f367b11ec9965f83655d6d (diff)
downloadcherrypy-git-380255baac47f15e60167c29f9c7b9a569bde1dd.tar.gz
Drop support for Python 3.2 and 3.1.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index b02f44c7..f8f7fd8a 100755
--- a/setup.py
+++ b/setup.py
@@ -27,8 +27,6 @@ classifiers = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.1',
- 'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
@@ -118,7 +116,7 @@ setup_params = dict(
setup_requires=[
'setuptools_scm',
],
- python_requires='>=2.7,!=3.0.*',
+ python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*',
)