mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 03:18:59 +08:00
Make travis runs less verbose. (#1145)
* make travis runs less verbose * update * more -q flags
This commit is contained in:
committed by
Robert Nishihara
parent
8ab56b5906
commit
2f45ac9e95
@@ -50,12 +50,12 @@ for ((i=0; i<${#PY_VERSIONS[@]}; ++i)); do
|
||||
pushd python
|
||||
# Install setuptools_scm because otherwise when building the wheel for
|
||||
# Python 3.6, we see an error.
|
||||
$PIP_CMD install setuptools_scm
|
||||
$PIP_CMD install -q setuptools_scm
|
||||
# Fix the numpy version because this will be the oldest numpy version we can
|
||||
# support.
|
||||
$PIP_CMD install numpy==1.10.4 cython
|
||||
$PIP_CMD install -q numpy==1.10.4 cython
|
||||
# Install wheel to avoid the error "invalid command 'bdist_wheel'".
|
||||
$PIP_CMD install wheel
|
||||
$PIP_CMD install -q wheel
|
||||
# Add the correct Python to the path and build the wheel. This is only
|
||||
# needed so that the installation finds the cython executable.
|
||||
INCLUDE_UI=1 PATH=$MACPYTHON_PY_PREFIX/$PY_MM/bin:$PATH $PYTHON_EXE setup.py bdist_wheel
|
||||
|
||||
@@ -21,7 +21,7 @@ for PYTHON in cp27-cp27mu cp33-cp33m cp34-cp34m cp35-cp35m cp36-cp36m; do
|
||||
pushd python
|
||||
# Fix the numpy version because this will be the oldest numpy version we can
|
||||
# support.
|
||||
/opt/python/${PYTHON}/bin/pip install numpy==1.10.4 cython
|
||||
/opt/python/${PYTHON}/bin/pip install -q numpy==1.10.4 cython
|
||||
INCLUDE_UI=1 PATH=/opt/python/${PYTHON}/bin:$PATH /opt/python/${PYTHON}/bin/python setup.py bdist_wheel
|
||||
# In the future, run auditwheel here.
|
||||
mv dist/*.whl ../.whl/
|
||||
|
||||
Reference in New Issue
Block a user