-
Notifications
You must be signed in to change notification settings - Fork 131
env: pop PIP_REQUIRE_VIRTUALENV from isolated environment #91
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
Conversation
If this is found to break anything, the approach from pypa/pyproject-hooks@a03b4e8 could be copied |
Hum, will @pradyunsg could you recommend anything here? In some cases we might end up with duplicated requirements and the dependency resolver would be able to handle that. Are any possible drawbacks to using the dependency resolver in all cases? What I've been doing is.
But I agree here that passing I think we should remove |
I imagine so
I don't see why we'd do both fixes? |
I think we should go with the approach where we pop To me, the whole purpose of the For other things like the resolver, setting |
Okay, so you can add a |
I see I've been mentioned here, but I don't have anything to add beyond what @pganssle said (all of which I agree with). :) |
dd19792
to
d1e9df0
Compare
d1e9df0
to
1eb82c4
Compare
@pradyunsg my question for you was if it was a good idea to set |
Unconditionally in pip's going to flip the switch soon, and we'll remove that flag eventually as well. Sticking to what pip does by default will be easier to explain and justify. It might be a good idea to pass-through environment variables starting with |
@adamchainz you are just missing the type hint, |
Use github suggestions for such minutiae. |
1eb82c4
to
28f22e6
Compare
Thank you 😊 |
Fixes #90.