aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-07-09 00:01:40 -0400
committerJason R. Coombs <jaraco@jaraco.com>2018-07-09 00:01:40 -0400
commite1fb17476770620546d0bd244b35591b99ba6ea7 (patch)
tree41a99e9f337265ff4b27253a341efc03eb980915
parent244ff322aec693a437f6a3f7bb6d147811712647 (diff)
downloadexternal_python_setuptools-e1fb17476770620546d0bd244b35591b99ba6ea7.tar.gz
external_python_setuptools-e1fb17476770620546d0bd244b35591b99ba6ea7.tar.bz2
external_python_setuptools-e1fb17476770620546d0bd244b35591b99ba6ea7.zip
Revert 7392f01f for pkg_resources/extern. 3.3 is the right signal there.
-rw-r--r--pkg_resources/extern/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg_resources/extern/__init__.py b/pkg_resources/extern/__init__.py
index dfde433d..b4156fec 100644
--- a/pkg_resources/extern/__init__.py
+++ b/pkg_resources/extern/__init__.py
@@ -48,7 +48,7 @@ class VendorImporter:
# on later Python versions to cause relative imports
# in the vendor package to resolve the same modules
# as those going through this importer.
- if sys.version_info.major >= 3:
+ if sys.version_info > (3, 3):
del sys.modules[extant]
return mod
except ImportError: