Stop building wheels for Python 3.3 on Linux. (#2342)

* Stop building wheels for Python 3.3 on Linux.

* Fix test.
This commit is contained in:
Robert Nishihara
2018-07-04 12:22:33 -07:00
committed by Philipp Moritz
parent ba28dddf6f
commit 1ede458519
2 changed files with 2 additions and 2 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 cp33-cp33m cp34-cp34m cp35-cp35m cp36-cp36m; do
for PYTHON in cp27-cp27mu cp34-cp34m cp35-cp35m cp36-cp36m; 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.