-
Notifications
You must be signed in to change notification settings - Fork 1.1k
PYTHON-4409 Streamline Wheel Building #1624
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
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.
LGTM.
Left questions just to improve my understanding.
python: ["cp37", "cp38", "cp39", "cp310", "cp311", "cp312"] | ||
include: | ||
- buildplat: [macos-11, macosx_*] | ||
python: "cp37" | ||
- buildplat: [macos-11, macosx_*] | ||
python: "cp38" | ||
- buildplat: [macos-11, macosx_*] | ||
python: "cp39" | ||
- buildplat: [macos-14, macosx_*] | ||
python: "cp310" | ||
- buildplat: [macos-14, macosx_*] | ||
python: "cp311" | ||
- buildplat: [macos-14, macosx_*] | ||
python: "cp312" |
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 can we get away with not specifying the python version anymore Is It that the way we build wheels now will automatically create wheels packages for 3.7 - 3.12?
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.
Yes, and we verify it later. :)
- name: Build wheels | ||
env: | ||
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }} | ||
MACOS_TEST_SKIP: "*arm64" | ||
CIBW_BUILD: ${{ matrix.buildplat[2] }} |
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.
Should this step exclude manylinux1?
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.
No need to exclude it. We have a separate manylinux1 to ensure that we have wheels that include that arch, but it is fine if we have duplicate wheels.
No description provided.