From 456e0ff96a7ebf866bb6fb742eef1b8baa465466 Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Mon, 17 Feb 2020 17:42:53 +0900 Subject: Build manylinux2010 wheels on GitHub Actions. --- docker/buildwheel.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'docker/buildwheel.sh') diff --git a/docker/buildwheel.sh b/docker/buildwheel.sh index c953127..ca068849 100644 --- a/docker/buildwheel.sh +++ b/docker/buildwheel.sh @@ -10,5 +10,12 @@ echo "arch=$ARCH" for V in "${PYTHON_VERSIONS[@]}"; do PYBIN=/opt/python/$V/bin rm -rf build/ # Avoid lib build by narrow Python is used by wide python - $PYBIN/python setup.py bdist_wheel -p manylinux1_${ARCH} + #$PYBIN/python setup.py bdist_wheel -p manylinux2010_${ARCH} + $PYBIN/python setup.py bdist_wheel +done + +cd dist +for whl in *.whl; do + auditwheel repair "$whl" + rm "$whl" done -- cgit v1.2.1