Commit 6ec75de3 authored by Jason R. Coombs's avatar Jason R. Coombs

Merged in menghan/setuptools (pull request #30)

Setuptools now honors all dependency_links and not just the first one that was supplied.
parents ed2b58f7 379096d8
......@@ -582,8 +582,9 @@ class PackageIndex(Environment):
if local_index is not None:
dist = dist or find(requirement, local_index)
if dist is None and self.to_scan is not None:
self.prescan()
if dist is None:
if self.to_scan is not None:
self.prescan()
dist = find(requirement)
if dist is None and not force_scan:
......
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