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.
2 parents 2d075e4 + cf88fc5 commit 8951a77Copy full SHA for 8951a77
travis/build-wheels.sh
@@ -1,6 +1,16 @@
1
#!/bin/bash
2
set -e -x
3
4
+function repair_wheel {
5
+ wheel="$1"
6
+ if ! auditwheel show "$wheel"; then
7
+ echo "Skipping non-platform wheel $wheel"
8
+ else
9
+ auditwheel repair "$wheel" --plat "$PLAT" -w /io/wheelhouse/
10
+ fi
11
+}
12
+
13
14
# Install a system package required by our library
15
yum install -y atlas-devel
16
@@ -12,8 +22,7 @@ done
22
23
# Bundle external shared libraries into the wheels
24
for whl in wheelhouse/*.whl; do
- auditwheel repair "$whl" --plat $PLAT -w /io/wheelhouse/ \
- || echo "Skipping non-platform wheel $whl"
25
+ repair_wheel "$whl"
17
26
done
18
27
19
28
# Install packages and test
0 commit comments