-
-
Notifications
You must be signed in to change notification settings - Fork 645
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
Install Python headers in the ARM64 wheel-building container. #21749
Conversation
This was tested by manually pushing to the 2.25.0.dev1 release branch. |
Maybe better to just have this package installed in the AMI used for these runners? |
It is already installed in that AMI. But this is installing it inside the manylinux container we use for wheel/pex building. The AMI has glibc 2.36, and we need 2.28 for manylinux_2_28 compatibility. Hence the need to build in a container. |
Understood. Makes sense. |
*([] if platform == Platform.LINUX_ARM64 else [install_go()]), | ||
*( | ||
[install_python_headers_in_manylinux_container()] | ||
if platform == Platform.LINUX_ARM64 |
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 presume this builds in the x86_64 containers because the package happens to already be installed?
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 guess so, some small difference between the two images.
This fixes a CI error due to our switch to Python 3.11.