-
Notifications
You must be signed in to change notification settings - Fork 424
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
Use pip
's in-tree build feature
#4294
Conversation
This is future behavior of `pip` to not copy to a temporary directory first. As this will soon become default. Opt-in on older `pip` versions for consistency. Uses `pip`'s doc's guidance for setting environment variables (linked below). ref: https://pip.pypa.io/en/stable/topics/configuration/#environment-variables
I'm not sure if this is related to pypa/pip#10577 fixing pypa/pip#10573? |
7d6720a
to
17b3b21
Compare
Started the addition of a test here (copying + tweaking an existing one), but probably need more pointers on how best to integrate that and have it run |
The other option here is to maintain out-of-tree builds by setting |
Hi there, thank you for your contribution! This pull request has been automatically marked as stale because it has not had recent activity. It will be closed automatically if no further activity occurs. If you would like this pull request to remain open please:
NOTE: If this pull request was closed prematurely, please leave a comment. Thanks! |
Hi there, thank you for your contribution! This pull request has been automatically marked as stale because it has not had recent activity. It will be closed automatically if no further activity occurs. If you would like this pull request to remain open please:
NOTE: If this pull request was closed prematurely, please leave a comment. Thanks! |
This is future behavior of
pip
to not copy to a temporary directory first. As this will soon become default. Opt-in on olderpip
versions for consistency. Usespip
's doc's guidance for setting environment variables (linked below).ref: https://pip.pypa.io/en/stable/topics/configuration/#environment-variables
xref: pypa/pip#7555