summaryrefslogtreecommitdiff
path: root/pkg_resources
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-10-22 16:57:13 -0400
committerJason R. Coombs <jaraco@jaraco.com>2015-10-22 16:57:13 -0400
commitae6c73f07680da77345f5ccfac4facde30ad4d7e (patch)
tree028597a7d031eec52cd4da80677779b0be002cae /pkg_resources
parent513c0d0f73951677f006cb43fcbc2127154ccbe7 (diff)
downloadpython-setuptools-git-ae6c73f07680da77345f5ccfac4facde30ad4d7e.tar.gz
Dropping support for Python 3.2 and earlier Python 3 versions. Currently only log a warning, but future versions will fail.
Diffstat (limited to 'pkg_resources')
-rw-r--r--pkg_resources/__init__.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py
index ce8f2e98..ae363755 100644
--- a/pkg_resources/__init__.py
+++ b/pkg_resources/__init__.py
@@ -95,6 +95,13 @@ except ImportError:
import packaging.specifiers
+if (3, 0) < sys.version_info < (3, 3):
+ msg = (
+ "Support for Python 3.0-3.2 has been dropped. Future versions "
+ "will fail here."
+ )
+ warnings.warn(msg)
+
# declare some globals that will be defined later to
# satisfy the linters.
require = None