Skip to content

Commit 6dc68bc

Browse files
committed
Fix building the manylinux wheels
Use the `manylinux2014` image when building the manylinux wheels The default imaged change from `manylinux2014` to `manylinux_2_28` in cibuildwheel 3.0.0: pypa/cibuildwheel#2330 This is required or it will fail during the auditwheel repair step
1 parent d9befdd commit 6dc68bc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/manylinux_wheels.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ jobs:
3737
env:
3838
CIBW_ENVIRONMENT_LINUX: "KIVY_SPLIT_EXAMPLES=1 USE_X11=1 USE_SDL3=1 USE_PANGOFT2=0 USE_GSTREAMER=0 KIVY_DEPS_ROOT=$(pwd)/kivy-dependencies LD_LIBRARY_PATH=$(pwd)/kivy-dependencies/dist/lib:$(pwd)/kivy-dependencies/dist/lib64"
3939
CIBW_BUILD_VERBOSITY_LINUX: 3
40+
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
41+
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux2014
4042
CIBW_BUILD: ${{ matrix.cibw_build }}
4143
CIBW_ARCHS: ${{ matrix.cibw_archs }}
4244
CIBW_BEFORE_ALL_LINUX: >

0 commit comments

Comments
 (0)