File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -6,17 +6,17 @@ yum install -y atlas-devel
6
6
7
7
# Compile wheels
8
8
for PYBIN in /opt/python/* /bin; do
9
- ${PYBIN} /pip install -r /io/dev-requirements.txt
10
- ${PYBIN} /pip wheel /io/ -w wheelhouse/
9
+ " ${PYBIN} /pip" install -r /io/dev-requirements.txt
10
+ " ${PYBIN} /pip" wheel /io/ -w wheelhouse/
11
11
done
12
12
13
13
# Bundle external shared libraries into the wheels
14
14
for whl in wheelhouse/* .whl; do
15
- auditwheel repair $whl -w /io/wheelhouse/
15
+ auditwheel repair " $whl " -w /io/wheelhouse/
16
16
done
17
17
18
18
# Install packages and test
19
19
for PYBIN in /opt/python/* /bin/; do
20
- ${PYBIN} /pip install python-manylinux-demo --no-index -f /io/wheelhouse
21
- (cd $HOME ; ${PYBIN} /nosetests pymanylinuxdemo)
20
+ " ${PYBIN} /pip" install python-manylinux-demo --no-index -f /io/wheelhouse
21
+ (cd " $HOME " ; " ${PYBIN} /nosetests" pymanylinuxdemo)
22
22
done
You can’t perform that action at this time.
0 commit comments