summaryrefslogtreecommitdiff
path: root/setuptools/command/build_ext.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-01-01 22:34:28 -0500
committerJason R. Coombs <jaraco@jaraco.com>2017-01-01 22:34:39 -0500
commitff371f18f0076bc63da05334f7e551c1cc29e10d (patch)
treed8e4212c8d53325fb149117c93233727d36b5ce8 /setuptools/command/build_ext.py
parent4c2dc87f5c63333a6f83be217c86f387f9ecd02a (diff)
downloadpython-setuptools-git-ff371f18f0076bc63da05334f7e551c1cc29e10d.tar.gz
Strip out vendored packages and require them instead. Ref #581.
Diffstat (limited to 'setuptools/command/build_ext.py')
-rw-r--r--setuptools/command/build_ext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/build_ext.py b/setuptools/command/build_ext.py
index 36f53f0d..c2fd8704 100644
--- a/setuptools/command/build_ext.py
+++ b/setuptools/command/build_ext.py
@@ -10,7 +10,7 @@ from distutils.errors import DistutilsError
from distutils import log
from setuptools.extension import Library
-from setuptools.extern import six
+import six
try:
# Attempt to use Cython for building extensions, if available