File tree Expand file tree Collapse file tree 3 files changed +15
-9
lines changed Expand file tree Collapse file tree 3 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
#
3
3
4
- docker run --rm -e PLAT=manylinux1_x86_64 -v ` pwd` :/io quay.io/pypa/manylinux1_x86_64 /io/build-wheels.sh
5
- ls wheelhouse/
6
- docker run --rm -e PLAT=manylinux1_i686 -v ` pwd` :/io quay.io/pypa/manylinux1_i686 linux32 /io/build-wheels.sh
7
- ls wheelhouse/
8
- docker run --rm -e PLAT=manylinux2010_x86_64 -v ` pwd` :/io quay.io/pypa/manylinux2010_x86_64 /io/build-wheels.sh
9
- ls wheelhouse/
4
+ docker run -e PLAT=manylinux2010_x86_64 -v /home/callicott/work/pandas:/io quay.io/pypa/manylinux2010_x86_64 /io/build-wheels.sh
Original file line number Diff line number Diff line change @@ -3,16 +3,24 @@ set -e -x
3
3
4
4
# Compile wheels
5
5
for PYBIN in /opt/python/* /bin; do
6
- " ${PYBIN} /pip" install -r /io/requirements-dev.txt
7
- " ${PYBIN} /pip" wheel /io/ -w wheelhouse/
6
+ " ${PYBIN} /pip" install -r /io/dev-requirements.txt &
8
7
done
8
+ wait
9
+ for PYBIN in /opt/python/* /bin; do
10
+ " ${PYBIN} /pip" wheel /io/ -w wheelhouse/ &
11
+ done
12
+ wait
13
+
14
+ ls wheelhouse
9
15
10
16
# Bundle external shared libraries into the wheels
11
17
for whl in wheelhouse/* .whl; do
12
18
auditwheel repair " $whl " --plat $PLAT -w /io/wheelhouse/
13
19
done
14
20
21
+ ls /io/wheelhouse
22
+
15
23
# Install packages and test
16
24
for PYBIN in /opt/python/* /bin/; do
17
25
" ${PYBIN} /pip" install pandas27 --no-index -f /io/wheelhouse
18
- done
26
+ done
Original file line number Diff line number Diff line change
1
+ numpy>=1.13.3
2
+ python-dateutil>=2.5.0
3
+ pytz>=2015.4
You can’t perform that action at this time.
0 commit comments