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 3927c51 commit 919e2ffCopy full SHA for 919e2ff
scripts/internal/manylinux-build-wheels.sh
@@ -155,6 +155,11 @@ if test "${ARCH}" == "x64"; then
155
/opt/python/cp37-cp37m/bin/auditwheel repair --plat manylinux2014_x86_64 ${whl} -w /work/dist/
156
rm ${whl}
157
done
158
+else
159
+ for whl in dist/itk_*$(uname -p).whl; do
160
+ auditwheel repair ${whl} -w /work/dist/
161
+ rm ${whl}
162
+ done
163
fi
164
for itk_wheel in dist/itk*-linux*.whl; do
165
mv ${itk_wheel} ${itk_wheel/linux/manylinux2014}
0 commit comments