Skip to content

Commit 496c27e

Browse files
authored
Merge pull request #22 from lkollar/skip-non-platform-whl
Skip no-platform wheels when repairing
2 parents b94f5ad + 860a4d5 commit 496c27e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

travis/build-wheels.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ done
1212

1313
# Bundle external shared libraries into the wheels
1414
for whl in wheelhouse/*.whl; do
15-
auditwheel repair "$whl" --plat $PLAT -w /io/wheelhouse/
15+
auditwheel repair "$whl" --plat $PLAT -w /io/wheelhouse/ \
16+
|| echo "Skipping non-platform wheel $whl"
1617
done
1718

1819
# Install packages and test

0 commit comments

Comments
 (0)