Skip to content

Commit

Permalink
Silence some installation process for build from source (#5396)
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-mo authored and pcmoritz committed Aug 7, 2019
1 parent 4a6ebe6 commit 1f8ae17
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ pushd "$BUILD_DIR"
# The following line installs pyarrow from S3, these wheels have been
# generated from https://github.com/ray-project/arrow-build from
# the commit listed in the command.
$PYTHON_EXECUTABLE -m pip install \
$PYTHON_EXECUTABLE -m pip install -q \
--target="$ROOT_DIR/python/ray/pyarrow_files" pyarrow==0.14.0.RAY \
--find-links https://s3-us-west-2.amazonaws.com/arrow-wheels/50f14adecbb83228599a2dc57859e4ecbe054b92/index.html
export PYTHON_BIN_PATH="$PYTHON_EXECUTABLE"
Expand Down
4 changes: 2 additions & 2 deletions thirdparty/scripts/build_modin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ pushd $TP_DIR/../python/ray/
rm -rf modin
mkdir modin
pushd modin
curl -kL "$MODIN_WHEELS_URL$MODIN_WHEELS_FNAME" -o "$MODIN_WHEELS_FNAME"
unzip "$MODIN_WHEELS_FNAME"
curl -kL --silent "$MODIN_WHEELS_URL$MODIN_WHEELS_FNAME" -o "$MODIN_WHEELS_FNAME"
unzip -qq "$MODIN_WHEELS_FNAME"
rm "$MODIN_WHEELS_FNAME"
popd
popd

0 comments on commit 1f8ae17

Please sign in to comment.