diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-23 10:32:22 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-23 10:32:22 -0500 |
commit | 089cdeb489a0fa94d11b7307b54210ef9aa40511 (patch) | |
tree | ee738b703f1b0737e139b5d10f62e54bd20e1028 /setuptools/command/easy_install.py | |
parent | aaec654d804cb78dbb6391afff721a63f26a71cd (diff) | |
parent | 11676d39c405672270a543bdc32de395b935b869 (diff) | |
download | external_python_setuptools-089cdeb489a0fa94d11b7307b54210ef9aa40511.tar.gz external_python_setuptools-089cdeb489a0fa94d11b7307b54210ef9aa40511.tar.bz2 external_python_setuptools-089cdeb489a0fa94d11b7307b54210ef9aa40511.zip |
Merge pull request #933 from pypa/feature/581-depend-not-bundle
Bundle dependencies instead of vendoring them
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 36e7f359..d3eabfc3 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -40,8 +40,8 @@ import subprocess import shlex import io -from setuptools.extern import six -from setuptools.extern.six.moves import configparser, map +import six +from six.moves import configparser, map from setuptools import Command from setuptools.sandbox import run_setup |