From 7f1686302fae94fc73f463e24e64d37879757a7a Mon Sep 17 00:00:00 2001 From: Bernard Giroux Date: Wed, 1 Apr 2020 13:29:38 -0400 Subject: [PATCH] restrict compilation to python 3.6 & 3.7 --- travis/build-linux-wheels.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/travis/build-linux-wheels.sh b/travis/build-linux-wheels.sh index 654e3fbb..df6263d1 100755 --- a/travis/build-linux-wheels.sh +++ b/travis/build-linux-wheels.sh @@ -1,8 +1,8 @@ #!/bin/bash set -e -x -# Compile wheels for python 3.5, 3.6 & 3.7 -for PYBIN in /opt/python/*3[567]*/bin; do +# Compile wheels for python 3.6 & 3.7 +for PYBIN in /opt/python/*3[67]*/bin; do "${PYBIN}/pip" install -r /io/requirements.txt "${PYBIN}/pip" wheel /io/ -w wheelhouse/ done