We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c6e61c commit 27f43c4Copy full SHA for 27f43c4
.github/workflows/build.yml
@@ -56,7 +56,7 @@ jobs:
56
fetch-depth: 0
57
58
- name: Build wheels
59
- uses: pypa/cibuildwheel@v2.20.0
+ uses: pypa/cibuildwheel@v2.21.3
60
with:
61
output-dir: wheelhouse
62
env:
@@ -70,6 +70,11 @@ jobs:
70
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
71
# Skip testing arm64 builds on Intel Macs.
72
CIBW_TEST_SKIP: "*-macosx_arm64 *-macosx_universal2:arm64"
73
+ # Use newer manylinux so we get newer gcc and can take advantage of
74
+ # speed boost from x86-64-v2, at the cost of not supporting some old
75
+ # patch releases of Python 3.9 if they haven't updated pip in their
76
+ # virtualenv.
77
+ CIBW_MANYLINUX_X86_64_IMAGE: "manylinux_2_28"
78
- uses: actions/upload-artifact@v3
79
name: Upload artifacts
80
0 commit comments