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 b86b1f2 commit 2e9668cCopy full SHA for 2e9668c
ci/travis/build-wheels.sh
@@ -1,7 +1,7 @@
1
#!/bin/bash -xe
2
3
# Compile wheels
4
-for PYBIN in `ls -1d /opt/python/*/bin | grep -v cpython`; do
+for PYBIN in `ls -1d /opt/python/*/bin | grep -v cpython | grep -v cp37`; do
5
"${PYBIN}/pip" install gevent==1.1
6
"${PYBIN}/pip" install -r /io/requirements.txt
7
"${PYBIN}/pip" wheel --no-deps /io/ -w wheelhouse/
@@ -13,7 +13,7 @@ for whl in wheelhouse/*.whl; do
13
done
14
15
# Install packages and test
16
17
"${PYBIN}/pip" install parallel-ssh --no-index -f /io/wheelhouse
18
(cd "$HOME"; "${PYBIN}/python" -c 'import pssh.native._ssh2')
19
0 commit comments