Skip to content

Commit 88a3b46

Browse files
committed
BUG: Remove duplicate .whl.whl from Linux metapackage
This only occurs with the `itk` metapackage due to repacking.
1 parent b831ab0 commit 88a3b46

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/internal/manylinux-build-wheels.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,10 @@ for itk_wheel in dist/itk*-linux*.whl; do
196196
rm -rf unpacked_whl packed_whl ${itk_wheel}
197197
done
198198

199+
for itk_wheel in dist/itk*.whl.whl; do
200+
mv $itk_wheel dist/$(basename $itk_wheel .whl)
201+
done
202+
199203
# Install packages and test
200204
for PYBIN in "${PYBINARIES[@]}"; do
201205
${PYBIN}/pip install --user numpy

0 commit comments

Comments
 (0)