diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2021-01-20 21:02:24 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-01-23 19:09:48 -0500 |
| commit | 4b0408a18dcda286af6668b7ef6934e53d1f247c (patch) | |
| tree | 331ca70fb3b3c933ca10f3535c52c719085b681b /setuptools | |
| parent | ea22005e27871431a29781632a52fee2a0a7cf17 (diff) | |
| download | python-setuptools-git-4b0408a18dcda286af6668b7ef6934e53d1f247c.tar.gz | |
Remove easy_install script and module.
Diffstat (limited to 'setuptools')
| -rw-r--r-- | setuptools/tests/test_namespaces.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/setuptools/tests/test_namespaces.py b/setuptools/tests/test_namespaces.py index 6c8c522d..270f90c9 100644 --- a/setuptools/tests/test_namespaces.py +++ b/setuptools/tests/test_namespaces.py @@ -62,8 +62,9 @@ class TestNamespaces: target.mkdir() install_cmd = [ sys.executable, - '-m', 'easy_install', - '-d', str(target), + '-m', 'pip', + 'install', + '-t', str(target), str(pkg), ] with test.test.paths_on_pythonpath([str(target)]): |
