aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/setopt.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/command/setopt.py
parent06872bb0bbbeb953e90bd0941444b0d499056557 (diff)
downloadexternal_python_setuptools-952c1bafda1929c74c737646aa025e6ffad6632e.tar.gz
external_python_setuptools-952c1bafda1929c74c737646aa025e6ffad6632e.tar.bz2
external_python_setuptools-952c1bafda1929c74c737646aa025e6ffad6632e.zip
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/command/setopt.py')
-rwxr-xr-xsetuptools/command/setopt.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/setuptools/command/setopt.py b/setuptools/command/setopt.py
index 1441e512..7f332be5 100755
--- a/setuptools/command/setopt.py
+++ b/setuptools/command/setopt.py
@@ -4,12 +4,7 @@ from distutils.errors import DistutilsOptionError
import distutils
import os
-try:
- from setuptools._vendor.six.moves import configparser
-except ImportError:
- # fallback to naturally-installed version; allows system packagers to
- # omit vendored packages.
- from six.moves import configparser
+from setuptools.extern.six.moves import configparser
from setuptools import Command