summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorQuentin Pradet <quentin.pradet@gmail.com>2019-09-21 20:12:40 +0400
committerSeth Michael Larson <sethmichaellarson@gmail.com>2019-09-21 11:12:40 -0500
commit5892e63695319e6c89fed3b435b0dafad17742e4 (patch)
tree30400c3a1771b6e5a08080e1b898b3f7b8dba19b /setup.py
parentedc3ddb3d1cbc5871df4a17a53ca53be7b37facc (diff)
downloadurllib3-5892e63695319e6c89fed3b435b0dafad17742e4.tar.gz
Drop support for Python 3.4 (#1686)
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index de06f2da..1d0f6bb1 100755
--- a/setup.py
+++ b/setup.py
@@ -37,7 +37,6 @@ setup(
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
@@ -63,7 +62,7 @@ setup(
],
package_dir={"": "src"},
requires=[],
- python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4",
+ python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4",
tests_require=[
# These are a less-specific subset of dev-requirements.txt, for the
# convenience of distro package maintainers.