Commit ae8b6ede authored by PJ Eby's avatar PJ Eby

Indicate when dependency processing is finished, so that you can tell

which dependencies go with what.  (Suggested by Ian Bicking)
(backport from trunk)

--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4053869
parent 877544db
......@@ -532,6 +532,7 @@ Please make the appropriate changes for your system and try again.
for dist in distros:
if dist.key not in self.installed_projects:
self.easy_install(dist.as_requirement())
log.info("Finished processing dependencies for %s", requirement)
def should_unzip(self, dist):
if self.zip_ok is not None:
......@@ -571,7 +572,6 @@ Please make the appropriate changes for your system and try again.
def install_script(self, dist, script_name, script_text, dev_path=None):
"""Generate a legacy script wrapper and install it"""
spec = str(dist.as_requirement())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment