-
-
Notifications
You must be signed in to change notification settings - Fork 640
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
Always include interpreter constraints in PEXes. #11733
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jsirois
force-pushed
the
IC/include-for-local-too
branch
from
March 18, 2021 15:26
f7a2fbe
to
f95eb9b
Compare
I <3 macOS: giampaolo/psutil#1832
I'll stew on this for a bit and move to DRAFT status. |
Previously we left them off for internal only PEXes. Leaving them does no harm since PEX uses the current interpreter if it matches constraints and it aids in the debugability of process chroots. # Rust tests and lints will be skipped. Delete if not intended. [ci skip-rust] # Building wheels and fs_util will be skipped. Delete if not intended. [ci skip-build-wheels]
The interpreter has a bad `-arch arm64` flag on intel that leads to compile errors for psutil. See: giampaolo/psutil#1832 [ci skip-rust] [ci skip-build-wheels]
jsirois
force-pushed
the
IC/include-for-local-too
branch
from
March 19, 2021 16:41
fa31509
to
6e7cfa8
Compare
Alright - this is good to go for review now. |
Eric-Arellano
approved these changes
Mar 19, 2021
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.
Thanks!
stuhood
approved these changes
Mar 19, 2021
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.
Thanks!
Merged
Eric-Arellano
pushed a commit
that referenced
this pull request
Apr 8, 2021
### Problem See: #11733 This issue now happens during wheel build: https://github.com/pantsbuild/pants/runs/2300092374?check_suite_focus=true#step:8:1129 ### Solution Apply the same solution that we use for running other things on macos to the build wheels job.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Previously we left them off for internal only PEXes. Leaving them does
no harm since PEX uses the current interpreter if it matches constraints
and it aids in the debugability of process chroots.
[ci skip-rust]
[ci skip-build-wheels]