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