summaryrefslogtreecommitdiff
path: root/setuptools/extern
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2018-04-26 18:06:09 +0300
committerPaul Ganssle <paul@ganssle.io>2018-05-24 14:32:31 -0400
commit7392f01ffced3acfdef25b0b2d55cefdc6ee468a (patch)
treeaf16caf760ae204ba437d0aa7a6b862fc85bb0b2 /setuptools/extern
parente078d78a439591fd7028cf80ca0b7c12ae013d4d (diff)
downloadpython-setuptools-git-7392f01ffced3acfdef25b0b2d55cefdc6ee468a.tar.gz
Drop support for EOL Python 3.3
Diffstat (limited to 'setuptools/extern')
-rw-r--r--setuptools/extern/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/extern/__init__.py b/setuptools/extern/__init__.py
index da3d668d..52785a03 100644
--- a/setuptools/extern/__init__.py
+++ b/setuptools/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 > (3, 3):
+ if sys.version_info.major >= 3:
del sys.modules[extant]
return mod
except ImportError: