aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_pypi.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-01-23 10:32:22 -0500
committerGitHub <noreply@github.com>2017-01-23 10:32:22 -0500
commit089cdeb489a0fa94d11b7307b54210ef9aa40511 (patch)
treeee738b703f1b0737e139b5d10f62e54bd20e1028 /tests/test_pypi.py
parentaaec654d804cb78dbb6391afff721a63f26a71cd (diff)
parent11676d39c405672270a543bdc32de395b935b869 (diff)
downloadexternal_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 'tests/test_pypi.py')
-rw-r--r--tests/test_pypi.py4
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'