Skip to content

Commit

Permalink
Merge pull request #2 from chris-allan/manylinux_2_28
Browse files Browse the repository at this point in the history
Bump to manylinux_2_28
  • Loading branch information
chris-allan authored Nov 30, 2023
2 parents bdc8c1d + 819b8d7 commit b5a99d9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
for f in patches/*; do patch -p0 < ${f}; done
docker run --rm -v $PWD/zeroc-ice-3.6.5:/build builder /bin/bash -c "cd /build ; /opt/python/${{ matrix.version }}/bin/python setup.py build -j 3"
docker run --rm -v $PWD/zeroc-ice-3.6.5:/build builder /bin/bash -c "cd /build ; /opt/python/${{ matrix.version }}/bin/python setup.py bdist_wheel"
docker run --rm -v $PWD/zeroc-ice-3.6.5:/build builder auditwheel repair --plat 'manylinux2014_x86_64' -w /build/dist /build/dist/zeroc_ice-3.6.5-${{ matrix.version }}-linux_x86_64.whl
docker run --rm -v $PWD/zeroc-ice-3.6.5:/build builder auditwheel repair --plat 'manylinux_2_28_x86_64' -w /build/dist /build/dist/zeroc_ice-3.6.5-${{ matrix.version }}-linux_x86_64.whl
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dockerfile for lowest common denominator Linux native artifact build
# --------------------------------------------------------------------
FROM quay.io/pypa/manylinux2014_x86_64
FROM quay.io/pypa/manylinux_2_28_x86_64

RUN yum install -y -q bzip2-devel openssl-devel
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
Linux x86_64 Zeroc Ice Python Builder
=====================================

Builds ZeroC Ice Python manylinux2014 wheel packages for Linux x86_64.
Builds ZeroC Ice Python manylinux_2_28 wheel packages for Linux x86_64.

** WARNING ** : the manylinux2014 wheel packages are bundled with
OpenSSL 1.0.2k and should not be used in production - see
https://github.com/pypa/manylinux#manylinux2014-centos-7-based.
** NOTE ** : the manylinux_2_28 wheel packages are bundled with
OpenSSL 1.1.1k - see
https://github.com/pypa/manylinux#manylinux_2_28-almalinux-8-based.

`pip>=20.3` is required to use these artifacts.

0 comments on commit b5a99d9

Please sign in to comment.