We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents efdcb62 + 93280b1 commit 6f39d40Copy full SHA for 6f39d40
1 file changed
.github/workflows/wheels.yml
@@ -51,8 +51,13 @@ jobs:
51
with:
52
python-version: '3.12'
53
- run: pip install cibuildwheel==2.23.0
54
- - run: python -m cibuildwheel --output-dir wheelhouse
+ - name: Build wheels
55
+ run: python -m cibuildwheel --output-dir wheelhouse
56
env:
57
+ CIBW_BEFORE_ALL_LINUX: "yum install -y clang"
58
+ CIBW_ENVIRONMENT_LINUX: "CC=clang CXX=clang++"
59
+ CIBW_MANYLINUX_X86_64_IMAGE: "manylinux_2_28"
60
+ CIBW_MANYLINUX_AARCH64_IMAGE: "manylinux_2_28"
61
CIBW_BUILD: "${{ matrix.pybuilds }}-*" # Use matrix.pybuilds and matrix.arch
62
CIBW_ARCHS_MACOS: ${{ matrix.arch }}
63
CIBW_SKIP: "cp*-manylinux_i686 cp*-musllinux* cp*-win32"
0 commit comments