-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Handle standalone pip creation from pip wheel #9960
Conversation
Actually I think maybe it’s best if we just remove the filename check altogether. If it’s gonna fail, it’s gonna fail either way, so the check doesn’t really mean much, now that I look at it. Just the |
Made the suggested change. |
I am guessing someone needs to approve the GitHub CI runs? |
b5f1060
to
c5501f0
Compare
@uranusjr applied your suggestions as-is. |
This change ensures that when pip is executed from a wheel/zip, standalone pip creation for build environment reuses the source. Resolves: pypa#9953 Co-authored-by: Tzu-ping Chung <[email protected]>
Looks like GitHub actions might need another "Approve and run". |
This change ensures that when pip is executed from a wheel/zip,
standalone pip creation for build environment reuses the source.
Resolves: #9953