Skip to content

Commit

Permalink
restrict compilation to python 3.6 & 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
bernard-giroux committed Apr 1, 2020
1 parent a684d95 commit 7f16863
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions travis/build-linux-wheels.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 7f16863

Please sign in to comment.