diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-11-17 21:54:30 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-11-17 21:59:34 -0500 |
commit | 380255baac47f15e60167c29f9c7b9a569bde1dd (patch) | |
tree | 0ce5bb683945c8b077d61a96e8e52c88e55faca0 /setup.py | |
parent | 426f65b78dbf5cfa94f367b11ec9965f83655d6d (diff) | |
download | cherrypy-git-380255baac47f15e60167c29f9c7b9a569bde1dd.tar.gz |
Drop support for Python 3.2 and 3.1.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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.*', ) |