Skip to content

Commit 3acb492

Browse files
committed
Update build-wheels.sh
1 parent ade9659 commit 3acb492

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

travis/build-wheels.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
yum install -y atlas-devel
55

66
# Compile wheels
7-
for PYBIN in "/opt/python/*/bin/"; do
7+
for PYBIN in /opt/python/*/bin; do
88
${PYBIN}/pip install -r /io/dev-requirements.txt
99
${PYBIN}/pip wheel /io/ -w wheelhouse/
1010
done
@@ -15,7 +15,7 @@ for whl in wheelhouse/*.whl; do
1515
done
1616

1717
# Install packages and test
18-
for PYBIN in "/opt/python/*/bin/"; do
18+
for PYBIN in /opt/python/*/bin/ do
1919
${PYBIN}/pip install python_manylinux_demo --no-index -f wheelhouse
2020
(cd $HOME; ${PYBIN}/nosetests pymanylinuxdemo)
2121
done

0 commit comments

Comments
 (0)