From 812e90e87221a626fede786b5af5d4ed7a8f75a8 Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Sun, 3 Nov 2024 10:08:25 -0500 Subject: [PATCH] New manylinux image --- Makefile | 2 +- wheels/build-wheels.sh | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index ac8b22c..80c2c8e 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ wheel: .PHONY: manylinux-wheel manylinux-wheel: - docker run -v $(PWD):/src quay.io/pypa/manylinux2014_x86_64:latest /src/wheels/build-wheels.sh + docker run -v $(PWD):/src quay.io/pypa/manylinux_2_28_x86_64 /src/wheels/build-wheels.sh .PHONY: clean clean: diff --git a/wheels/build-wheels.sh b/wheels/build-wheels.sh index 0926233..2c25683 100755 --- a/wheels/build-wheels.sh +++ b/wheels/build-wheels.sh @@ -25,8 +25,8 @@ for PYBIN in /opt/python/cp{39,310,311,312}*/bin; do "${PYBIN}/python" -m pip wheel -w /tmp/wheel . done -auditwheel repair --plat manylinux2014_x86_64 -w dist/ /tmp/wheel/filprofiler*cp39*whl -auditwheel repair --plat manylinux2014_x86_64 -w dist/ /tmp/wheel/filprofiler*cp310*whl -auditwheel repair --plat manylinux2014_x86_64 -w dist/ /tmp/wheel/filprofiler*cp311*whl -auditwheel repair --plat manylinux2014_x86_64 -w dist/ /tmp/wheel/filprofiler*cp312*whl +auditwheel repair --plat manylinux_2_28_x86_64 -w dist/ /tmp/wheel/filprofiler*cp39*whl +auditwheel repair --plat manylinux_2_28_x86_64 -w dist/ /tmp/wheel/filprofiler*cp310*whl +auditwheel repair --plat manylinux_2_28_x86_64 -w dist/ /tmp/wheel/filprofiler*cp311*whl +auditwheel repair --plat manylinux_2_28_x86_64 -w dist/ /tmp/wheel/filprofiler*cp312*whl