aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-02-16 10:19:40 -0500
committerJason R. Coombs <jaraco@jaraco.com>2020-02-16 11:04:57 -0500
commit7bb73a477de24069002516eb6eb1d755bed9d65b (patch)
tree5a99e69846a4d5bf771a15273714c333f6e4cb5b /tools
parent43edec2506f901ab939390951383025682448edd (diff)
downloadexternal_python_setuptools-feature/implicit-bootstrap.tar.gz
external_python_setuptools-feature/implicit-bootstrap.tar.bz2
external_python_setuptools-feature/implicit-bootstrap.zip
Bootstrap the package unconditionally in setup.py. Fixes #2001.feature/implicit-bootstrap
Diffstat (limited to 'tools')
-rw-r--r--tools/tox_pip.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/tox_pip.py b/tools/tox_pip.py
index 9fe4f905..3a66b05d 100644
--- a/tools/tox_pip.py
+++ b/tools/tox_pip.py
@@ -15,12 +15,6 @@ def remove_setuptools():
subprocess.check_call(cmd, cwd='.tox')
-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 .?
@@ -72,7 +66,6 @@ def run(args):
if is_install_self(args):
remove_setuptools()
- bootstrap()
sys.version_info > (3,) or disable_python_requires()
pip(*args)