-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix PEP 518 support from VCS #5148
Conversation
@@ -715,7 +715,7 @@ def build(self, requirements, session, autobuilding=False): | |||
pass | |||
elif autobuilding and req.link and not req.link.is_artifact: | |||
# VCS checkout. Build wheel just for this run. | |||
ephem_cache = True | |||
buildset.append((req, True)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't it be better to move the ephem_cache = False
initialization above to the code block using it bellow?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would. :)
Tested locally and I am happy with this. I don't have time to add a test. I'll do that later. :( |
This broke stuff -- #5251. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Fixes #5142