aboutsummaryrefslogtreecommitdiffstats
path: root/pkg_resources
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-01-01 18:31:19 -0500
committerGitHub <noreply@github.com>2020-01-01 18:31:19 -0500
commit95accbbd4f5d3fd1ac29b306e986fce967fde865 (patch)
tree37b7940b35fb07da159e24f1bc3baca1b6ae97ca /pkg_resources
parent3d5b7775b7b7ee6c0b354a04fe1d33c1f9b0e5df (diff)
parentdc868755d53520895d96ec0251a66df562a37095 (diff)
downloadexternal_python_setuptools-95accbbd4f5d3fd1ac29b306e986fce967fde865.tar.gz
external_python_setuptools-95accbbd4f5d3fd1ac29b306e986fce967fde865.tar.bz2
external_python_setuptools-95accbbd4f5d3fd1ac29b306e986fce967fde865.zip
Merge pull request #1908 from benoit-pierre/drop_py34_support
drop support for Python 3.4
Diffstat (limited to 'pkg_resources')
-rw-r--r--pkg_resources/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py
index 51fb1192..2f5aa64a 100644
--- a/pkg_resources/__init__.py
+++ b/pkg_resources/__init__.py
@@ -88,8 +88,8 @@ __import__('pkg_resources.extern.packaging.markers')
__metaclass__ = type
-if (3, 0) < sys.version_info < (3, 4):
- raise RuntimeError("Python 3.4 or later is required")
+if (3, 0) < sys.version_info < (3, 5):
+ raise RuntimeError("Python 3.5 or later is required")
if six.PY2:
# Those builtin exceptions are only defined in Python 3