Skip to content

Commit

Permalink
Upgrade to manylinux_2_28
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavid committed Feb 2, 2025
1 parent 711a439 commit 5454758
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,18 @@ on:
push:
branches:
- master
- wheels-*
tags:
- 'v*'

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
name: Build wheels for ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- name: linux
- name: linux-amd
os: ubuntu-24.04
- name: linux-arm
os: ubuntu-24.04-arm
Expand All @@ -33,6 +34,11 @@ jobs:

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux_2_28"
CIBW_MANYLINUX_AARCH64_IMAGE: "manylinux_2_28"
CIBW_MANYLINUX_PYPY_X86_64_IMAGE: "manylinux_2_28"
CIBW_MANYLINUX_PYPY_AARCH64_IMAGE: "manylinux_2_28"

- uses: actions/upload-artifact@v4
with:
Expand Down
1 change: 1 addition & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ if [ "$CIBUILDWHEEL" = "1" ]; then
yum install openssl-devel -y
else
yum install perl-IPC-Cmd -y
yum install perl-Pod-Html -y
fi
elif [ -f /sbin/apk ]; then
apk add wget
Expand Down

0 comments on commit 5454758

Please sign in to comment.