diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-12-09 08:16:33 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-12-09 08:53:50 -0500 |
commit | f14930e66601b462699c44384c482cd966f53b8f (patch) | |
tree | bea29134419118c1bcb95ca589da5a8e2372e089 /setup.py | |
parent | ac9997648d89131412eacbb198e2d3a7c97f69e4 (diff) | |
download | external_python_setuptools-f14930e66601b462699c44384c482cd966f53b8f.tar.gz external_python_setuptools-f14930e66601b462699c44384c482cd966f53b8f.tar.bz2 external_python_setuptools-f14930e66601b462699c44384c482cd966f53b8f.zip |
Drop support for Python 2.6, removing lots of compatibility code for a leaner, cleaner codebase. Fixes #878.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -145,7 +145,6 @@ setup_params = dict( Intended Audience :: Developers License :: OSI Approved :: MIT License Operating System :: OS Independent - Programming Language :: Python :: 2.6 Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 Programming Language :: Python :: 3.3 @@ -156,7 +155,7 @@ setup_params = dict( Topic :: System :: Systems Administration Topic :: Utilities """).strip().splitlines(), - python_requires='>=2.6,!=3.0.*,!=3.1.*,!=3.2.*', + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*', extras_require={ "ssl:sys_platform=='win32'": "wincertstore==0.2", "certs": "certifi==2016.9.26", |