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 318e2c0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ 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:
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 @@ -66,6 +66,7 @@ if [ "$CIBUILDWHEEL" = "1" ]; then
elif [ -f /usr/bin/yum ]; then
yum install wget zlib-devel -y
if [ -z "$OPENSSL_VERSION" ]; then
yum install perl-Pod-Html -y
yum install openssl-devel -y
else
yum install perl-IPC-Cmd -y
Expand Down

0 comments on commit 318e2c0

Please sign in to comment.