diff options
author | Joffrey F <joffrey@docker.com> | 2018-12-13 14:53:09 -0800 |
---|---|---|
committer | Joffrey F <joffrey@docker.com> | 2019-03-16 09:41:38 -0700 |
commit | 55ffb761bffd8b6382332faf3e3375817706c690 (patch) | |
tree | 58688853383cd6b43c103965bbf581a72cf2cbff /setup.py | |
parent | 4d7d4084138fa6161ef5f31d410b0d326d41f777 (diff) | |
download | docker-py-terminate_3.3_support.tar.gz |
Terminate support for Python 3.3 (EOL in 2018)terminate_3.3_support
Signed-off-by: Joffrey F <joffrey@docker.com>
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -29,9 +29,6 @@ extras_require = { ':sys_platform == "win32" and python_version < "3.6"': 'pypiwin32==219', ':sys_platform == "win32" and python_version >= "3.6"': 'pypiwin32==223', - # urllib3 drops support for Python 3.3 in 1.23 - ':python_version == "3.3"': 'urllib3 < 1.23', - # If using docker-py over TLS, highly recommend this option is # pip-installed or pinned. @@ -75,7 +72,7 @@ setup( install_requires=requirements, tests_require=test_requirements, extras_require=extras_require, - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*', + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', zip_safe=False, test_suite='tests', classifiers=[ @@ -87,7 +84,6 @@ setup( 'Programming Language :: Python :: 2', '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 :: 3.6', |