Skip to content

Commit 5454758

Browse files
committed
Upgrade to manylinux_2_28
1 parent 711a439 commit 5454758

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/wheels.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,18 @@ on:
44
push:
55
branches:
66
- master
7+
- wheels-*
78
tags:
89
- 'v*'
910

1011
jobs:
1112
build_wheels:
12-
name: Build wheels on ${{ matrix.os }}
13+
name: Build wheels for ${{ matrix.name }}
1314
runs-on: ${{ matrix.os }}
1415
strategy:
1516
matrix:
1617
include:
17-
- name: linux
18+
- name: linux-amd
1819
os: ubuntu-24.04
1920
- name: linux-arm
2021
os: ubuntu-24.04-arm
@@ -33,6 +34,11 @@ jobs:
3334

3435
- name: Build wheels
3536
run: python -m cibuildwheel --output-dir wheelhouse
37+
env:
38+
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux_2_28"
39+
CIBW_MANYLINUX_AARCH64_IMAGE: "manylinux_2_28"
40+
CIBW_MANYLINUX_PYPY_X86_64_IMAGE: "manylinux_2_28"
41+
CIBW_MANYLINUX_PYPY_AARCH64_IMAGE: "manylinux_2_28"
3642

3743
- uses: actions/upload-artifact@v4
3844
with:

build.sh

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ if [ "$CIBUILDWHEEL" = "1" ]; then
6969
yum install openssl-devel -y
7070
else
7171
yum install perl-IPC-Cmd -y
72+
yum install perl-Pod-Html -y
7273
fi
7374
elif [ -f /sbin/apk ]; then
7475
apk add wget

0 commit comments

Comments
 (0)