Reorder conditionals to deal with installed VCS requirements

This commit is contained in:
Pradyun Gedam 2018-04-18 09:39:27 +05:30
parent 9875055ffe
commit 123e61d4a5
No known key found for this signature in database
GPG Key ID: DA17C4B29CB32E4B
1 changed files with 2 additions and 2 deletions

View File

@ -717,11 +717,11 @@ class WheelBuilder(object):
)
elif autobuilding and req.editable:
pass
elif autobuilding and not req.source_dir:
pass
elif autobuilding and req.link and not req.link.is_artifact:
# VCS checkout. Build wheel just for this run.
buildset.append((req, True))
elif autobuilding and not req.source_dir:
pass
else:
ephem_cache = False
if autobuilding: