Skip to content

Commit ed35c43

Browse files
committed
scripts: Pin auditwheel to 1.9.0
For the "itk" metapackage, auditwheel 1.10.0 ends up removing the input without a replacement.
1 parent 84ab186 commit ed35c43

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/internal/manylinux-build-wheels.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,12 @@ for PYBIN in "${PYBINARIES[@]}"; do
135135

136136
done
137137

138+
# auditwheel contains a regression where it will consume the "itk" wheels.
139+
/opt/python/cp37-cp37m/bin/pip3 install auditwheel==1.9.0
138140
# Since there are no external shared libraries to bundle into the wheels
139141
# this step will fixup the wheel switching from 'linux' to 'manylinux1' tag
140142
for whl in dist/*linux_$(uname -p).whl; do
141-
auditwheel repair ${whl} -w /work/dist/
143+
/opt/python/cp37-cp37m/bin/auditwheel repair ${whl} -w /work/dist/
142144
rm ${whl}
143145
done
144146

0 commit comments

Comments
 (0)