Skip to content

Commit c41bed9

Browse files
committed
whitelist versions that should be built, this should be more robust than deleting versions. it seems that python 2.6 was renamed
1 parent fd3a60a commit c41bed9

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

travis/build-wheels.sh

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
#!/bin/bash
22
set -e -x
33

4-
rm -rf /opt/python/cp26-cp26m
5-
rm -rf /opt/python/cp26-cp26mu
6-
74
bash /io/travis/build-libunwind.sh
85

96
# Compile wheels
10-
for PYBIN in /opt/python/*/bin; do
11-
${PYBIN}/pip install -r /io/dev_requirements.txt
12-
${PYBIN}/pip wheel /io/ -w wheels/
7+
for PYV in "cp27-cp27m" "cp27-cp27mu" "cp34-cp34m" "cp35-cp35m" "cp36-cp36m"
8+
do
9+
/opt/python/${PYV}/bin/pip install -r /io/dev_requirements.txt
10+
/opt/python/${PYV}/bin/pip wheel /io/ -w wheels/
1311
done
1412

1513
# Bundle external shared libraries into the wheels

0 commit comments

Comments
 (0)