summaryrefslogtreecommitdiff
path: root/setuptools/dist.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-12-31 16:30:47 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-12-31 16:30:47 -0500
commit952c1bafda1929c74c737646aa025e6ffad6632e (patch)
tree1fd158d08ce61d8a9f4e2b88d27026e7774f80ff /setuptools/dist.py
parent06872bb0bbbeb953e90bd0941444b0d499056557 (diff)
downloadpython-setuptools-git-952c1bafda1929c74c737646aa025e6ffad6632e.tar.gz
Modeling after Astropy's technique for bundling libraries, the imports are now much cleaner. Thanks @embray. Ref #229.
--HG-- branch : feature/issue-229
Diffstat (limited to 'setuptools/dist.py')
-rw-r--r--setuptools/dist.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/setuptools/dist.py b/setuptools/dist.py
index 11b42d19..70731225 100644
--- a/setuptools/dist.py
+++ b/setuptools/dist.py
@@ -13,12 +13,7 @@ from distutils.core import Distribution as _Distribution
from distutils.errors import (DistutilsOptionError, DistutilsPlatformError,
DistutilsSetupError)
-try:
- from setuptools._vendor import six
-except ImportError:
- # fallback to naturally-installed version; allows system packagers to
- # omit vendored packages.
- import six
+from setuptools.extern import six
from setuptools.depends import Require
from setuptools import windows_support