We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80c6104 commit 89fe648Copy full SHA for 89fe648
scripts/internal/manylinux-build-wheels.sh
@@ -135,10 +135,12 @@ for PYBIN in "${PYBINARIES[@]}"; do
135
136
done
137
138
+# auditwheel contains a regression where it will consume the "itk" wheels.
139
+/opt/python/cp37-cp37m/bin/pip3 install auditwheel==1.9.0
140
# Since there are no external shared libraries to bundle into the wheels
141
# this step will fixup the wheel switching from 'linux' to 'manylinux1' tag
142
for whl in dist/*linux_$(uname -p).whl; do
- auditwheel repair ${whl} -w /work/dist/
143
+ /opt/python/cp37-cp37m/bin/auditwheel repair ${whl} -w /work/dist/
144
rm ${whl}
145
146
0 commit comments