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 fd3a60a commit c41bed9Copy full SHA for c41bed9
travis/build-wheels.sh
@@ -1,15 +1,13 @@
1
#!/bin/bash
2
set -e -x
3
4
-rm -rf /opt/python/cp26-cp26m
5
-rm -rf /opt/python/cp26-cp26mu
6
-
7
bash /io/travis/build-libunwind.sh
8
9
# 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/
+for PYV in "cp27-cp27m" "cp27-cp27mu" "cp34-cp34m" "cp35-cp35m" "cp36-cp36m"
+do
+ /opt/python/${PYV}/bin/pip install -r /io/dev_requirements.txt
+ /opt/python/${PYV}/bin/pip wheel /io/ -w wheels/
13
done
14
15
# Bundle external shared libraries into the wheels
0 commit comments