Skip to content

Commit 2e9668c

Browse files
author
Pan
committed
Skip 3.7 wheel builds - no gevent support yet.
1 parent b86b1f2 commit 2e9668c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/travis/build-wheels.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash -xe
22

33
# Compile wheels
4-
for PYBIN in `ls -1d /opt/python/*/bin | grep -v cpython`; do
4+
for PYBIN in `ls -1d /opt/python/*/bin | grep -v cpython | grep -v cp37`; do
55
"${PYBIN}/pip" install gevent==1.1
66
"${PYBIN}/pip" install -r /io/requirements.txt
77
"${PYBIN}/pip" wheel --no-deps /io/ -w wheelhouse/
@@ -13,7 +13,7 @@ for whl in wheelhouse/*.whl; do
1313
done
1414

1515
# Install packages and test
16-
for PYBIN in `ls -1d /opt/python/*/bin | grep -v cpython`; do
16+
for PYBIN in `ls -1d /opt/python/*/bin | grep -v cpython | grep -v cp37`; do
1717
"${PYBIN}/pip" install parallel-ssh --no-index -f /io/wheelhouse
1818
(cd "$HOME"; "${PYBIN}/python" -c 'import pssh.native._ssh2')
1919
done

0 commit comments

Comments
 (0)