aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-02-02 11:21:38 -0500
committerJason R. Coombs <jaraco@jaraco.com>2017-02-02 11:21:38 -0500
commite65c45538fab94008b8066edd134725be8f9c400 (patch)
tree242761840c623dd293585e7e943c5a12aa7d7328 /bootstrap.py
parent174e84e0ce297c38aa11f6618c7d0dad7f1a5acf (diff)
downloadexternal_python_setuptools-e65c45538fab94008b8066edd134725be8f9c400.tar.gz
external_python_setuptools-e65c45538fab94008b8066edd134725be8f9c400.tar.bz2
external_python_setuptools-e65c45538fab94008b8066edd134725be8f9c400.zip
Always generate the dependencies.
Diffstat (limited to 'bootstrap.py')
-rw-r--r--bootstrap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.py b/bootstrap.py
index ad9b067e..ee3b53c8 100644
--- a/bootstrap.py
+++ b/bootstrap.py
@@ -75,7 +75,6 @@ def gen_deps():
def install_deps():
"Just in time make the deps available"
import pip
- gen_deps()
tmpdir = tempfile.mkdtemp()
args = [
'install',
@@ -92,6 +91,7 @@ def install_deps():
def main():
ensure_egg_info()
+ gen_deps()
try:
# first assume dependencies are present
run_egg_info()