diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-01 22:34:28 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-01 22:34:39 -0500 |
commit | ff371f18f0076bc63da05334f7e551c1cc29e10d (patch) | |
tree | d8e4212c8d53325fb149117c93233727d36b5ce8 /tests | |
parent | 4c2dc87f5c63333a6f83be217c86f387f9ecd02a (diff) | |
download | external_python_setuptools-ff371f18f0076bc63da05334f7e551c1cc29e10d.tar.gz external_python_setuptools-ff371f18f0076bc63da05334f7e551c1cc29e10d.tar.bz2 external_python_setuptools-ff371f18f0076bc63da05334f7e551c1cc29e10d.zip |
Strip out vendored packages and require them instead. Ref #581.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_pypi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_pypi.py b/tests/test_pypi.py index b3425e53..173b2c87 100644 --- a/tests/test_pypi.py +++ b/tests/test_pypi.py @@ -2,8 +2,8 @@ import os import subprocess import virtualenv -from setuptools.extern.six.moves import http_client -from setuptools.extern.six.moves import xmlrpc_client +from six.moves import http_client +from six.moves import xmlrpc_client TOP = 200 PYPI_HOSTNAME = 'pypi.python.org' |