Skip to content

Commit

Permalink
New manylinux image
Browse files Browse the repository at this point in the history
  • Loading branch information
pythonspeed committed Nov 3, 2024
1 parent adee8be commit 812e90e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
8 changes: 4 additions & 4 deletions wheels/build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 812e90e

Please sign in to comment.