Adding Python3.7 wheels support (#2546)

* Adding Python3.7 wheels support

* Adding Mac wheels update

* fix

* numpy version

* choose different numpy versions depending on python version

* fix
This commit is contained in:
Devin Petersohn
2018-10-18 17:58:39 -07:00
committed by Philipp Moritz
parent 653c5b114a
commit 8fcdafc6ea
3 changed files with 20 additions and 8 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ rm -f /usr/bin/python2
ln -s /opt/python/cp27-cp27m/bin/python2 /usr/bin/python2
mkdir .whl
for PYTHON in cp27-cp27mu cp34-cp34m cp35-cp35m cp36-cp36m; do
for PYTHON in cp27-cp27mu cp34-cp34m cp35-cp35m cp36-cp36m cp37-cp37m; do
# The -f flag is passed twice to also run git clean in the arrow subdirectory.
# The -d flag removes directories. The -x flag ignores the .gitignore file,
# and the -e flag ensures that we don't remove the .whl directory.