-
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
Add an option to allow disabling build isolation #5053
Add an option to allow disabling build isolation #5053
Conversation
80da60b
to
ca92001
Compare
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.
Looks OK. One minor question.
Also, do we need additional docs (beyond what's auto-generated) explaining why this flag should be used (and explaining that it's a specialist thing)?
tests/functional/test_wheel.py
Outdated
@pytest.mark.network | ||
def test_pip_wheel_with_pep518_build_reqs_no_isolation(script, data): | ||
script.pip('install', 'wheel') | ||
script.pip('download', 'setuptools', 'wheel', '-d', data.packages) |
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.
Why are you downloading setuptools and wheel here? Isn't the point of no-isolation that you don't need them?
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.
I overlooked it while copy pasting. Whoops! Nice catch! :)
Thanks @pradyunsg. :) Anything we need to do to test this? |
I was thinking we'd cover this as a part of #4803, separately. |
1c6d353
to
c08d4cc
Compare
@jakirkham if you guys could take master for a spin after this merges and give us feedback on it, that would be nice! :) Thanks for taking the time to review this @auvipy! :) |
@pfmoore I'll merge? |
Go for it (once CI says it's clean - Travis looks good so far).
Works for me - I'll cover it there. |
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 #5033