diff options
Diffstat (limited to 'tools/tox_pip.py')
-rw-r--r-- | tools/tox_pip.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/tox_pip.py b/tools/tox_pip.py index be2ff1d0..9abba603 100644 --- a/tools/tox_pip.py +++ b/tools/tox_pip.py @@ -15,12 +15,6 @@ def remove_setuptools(): subprocess.check_call(cmd, cwd=os.environ['TOX_WORK_DIR']) -def bootstrap(): - print("Running bootstrap") - cmd = [sys.executable, '-m', 'bootstrap'] - subprocess.check_call(cmd) - - def is_install_self(args): """ Do the args represent an install of .? @@ -61,7 +55,6 @@ def run(args): if is_install_self(args): remove_setuptools() - bootstrap() pip(*args) |