1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
set -xe
WHEEL="$1"
DEST_DIR="$2"
# create a temporary directory in the destination folder and unpack the wheel
# into there
pushd $DEST_DIR
mkdir -p tmp
pushd tmp
wheel unpack $WHEEL
pushd scikit_misc*
# To avoid DLL hell, the file name of libopenblas that's being vendored with
# the wheel has to be name-mangled. delvewheel is unable to name-mangle PYD
# containing extra data at the end of the binary, which frequently occurs when
# building with mingw.
# We therefore find each PYD in the directory structure and strip them.
for f in $(find ./skmisc* -name '*.pyd'); do strip $f; done
# now repack the wheel and overwrite the original
wheel pack .
mv -fv *.whl $WHEEL
cd $DEST_DIR
rm -rf tmp
# the libopenblas.dll is placed into this directory in the cibw_before_build
# script.
delvewheel repair --add-path /c/opt/openblas/openblas_dll -w $DEST_DIR $WHEEL
|