Skip to content

Commit a568c12

Browse files
committed
fix: use manylinux_2_39 image for riscv64 wheels
manylinux_2_28_riscv64 does not exist in quay.io/pypa; the correct image is manylinux_2_39_riscv64. Signed-off-by: Bruno Verachten <gounthar@gmail.com>
1 parent cbc4a20 commit a568c12

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/wheel.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,32 +71,32 @@ jobs:
7171
- py: 'cp314t'
7272
image: 'musllinux_1_1'
7373
include:
74-
# riscv64 only has manylinux_2_28 (no manylinux2014, no musllinux).
74+
# riscv64 only has manylinux_2_39 (no manylinux2014, no musllinux).
7575
# Using include entries to bypass the manylinux_2_28 excludes above.
7676
- py: 'cp310'
7777
arch: 'riscv64'
7878
abi: 'manylinux'
79-
image: 'manylinux_2_28'
79+
image: 'manylinux_2_39'
8080
- py: 'cp311'
8181
arch: 'riscv64'
8282
abi: 'manylinux'
83-
image: 'manylinux_2_28'
83+
image: 'manylinux_2_39'
8484
- py: 'cp312'
8585
arch: 'riscv64'
8686
abi: 'manylinux'
87-
image: 'manylinux_2_28'
87+
image: 'manylinux_2_39'
8888
- py: 'cp313'
8989
arch: 'riscv64'
9090
abi: 'manylinux'
91-
image: 'manylinux_2_28'
91+
image: 'manylinux_2_39'
9292
- py: 'cp314'
9393
arch: 'riscv64'
9494
abi: 'manylinux'
95-
image: 'manylinux_2_28'
95+
image: 'manylinux_2_39'
9696
- py: 'cp314t'
9797
arch: 'riscv64'
9898
abi: 'manylinux'
99-
image: 'manylinux_2_28'
99+
image: 'manylinux_2_39'
100100
runs-on: ${{ matrix.arch == 'aarch64' && 'ubuntu-22.04-arm' || 'ubuntu-22.04' }}
101101
env:
102102
CIBW_ARCHS: ${{ matrix.arch }}

0 commit comments

Comments
 (0)