Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

audtiwheel6 should fix an issue, remove the work-around #136

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "scipy-openblas64"
version = "0.3.26.0.3"
version = "0.3.26.0.4"
requires-python = ">=3.7"
description = "Provides OpenBLAS for python packaging"
readme = "README.md"
Expand Down
17 changes: 5 additions & 12 deletions tools/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ PYTHON=${PYTHON:-python3.9}

mkdir -p local/openblas
mkdir -p dist
$PYTHON -m pip install wheel auditwheel
$PYTHON -m pip install wheel

# This will fail if there is more than one file in libs
tar -C local/scipy_openblas64 --strip-components=2 -xf libs/openblas*.tar.gz
Expand Down Expand Up @@ -71,22 +71,15 @@ if [ $(uname) == "Darwin" ]; then
fi
delocate-wheel -v dist/*.whl
else
$PYTHON -m pip install "auditwheel>=6"
auditwheel repair -w dist --lib-sdir /lib dist/*.whl
rm dist/scipy_openblas*-none-any.whl
# Add an RPATH to libgfortran:
# https://github.com/pypa/auditwheel/issues/451
if [ "$MB_ML_LIBC" == "musllinux" ]; then
apk add zip
else
yum install -y zip
fi
unzip dist/*.whl "*libgfortran*"
patchelf --force-rpath --set-rpath '$ORIGIN' */lib/libgfortran*
zip dist/*.whl */lib/libgfortran*
# prepare for changing the wheel name before the upload to anaconda
chmod a+w dist
fi

if [ "${PLAT}" == "arm64" ]; then
# Cannot test
# Cannot test cross-platform
exit 0
fi
# Test that the wheel works with a different python
Expand Down