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 ade9659 commit 3acb492Copy full SHA for 3acb492
travis/build-wheels.sh
@@ -4,7 +4,7 @@
4
yum install -y atlas-devel
5
6
# Compile wheels
7
-for PYBIN in "/opt/python/*/bin/"; do
+for PYBIN in /opt/python/*/bin; do
8
${PYBIN}/pip install -r /io/dev-requirements.txt
9
${PYBIN}/pip wheel /io/ -w wheelhouse/
10
done
@@ -15,7 +15,7 @@ for whl in wheelhouse/*.whl; do
15
16
17
# Install packages and test
18
+for PYBIN in /opt/python/*/bin/ do
19
${PYBIN}/pip install python_manylinux_demo --no-index -f wheelhouse
20
(cd $HOME; ${PYBIN}/nosetests pymanylinuxdemo)
21
0 commit comments