From 4dc683d39ee9ecf45e6a8339deb11128731b12e8 Mon Sep 17 00:00:00 2001 From: Philipp Moritz Date: Thu, 28 Feb 2019 12:17:32 -0800 Subject: [PATCH] Use latest arrow wheels (#4182) --- build.sh | 4 ++-- ci/travis/install-dependencies.sh | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/build.sh b/build.sh index 7e0c75f14..ec7b10e52 100755 --- a/build.sh +++ b/build.sh @@ -119,8 +119,8 @@ else # generated from https://github.com/ray-project/arrow-build from # the commit listed in the command. $PYTHON_EXECUTABLE -m pip install \ - --target=$ROOT_DIR/python/ray/pyarrow_files pyarrow==0.12.0-RAY \ - --find-links https://s3-us-west-2.amazonaws.com/arrow-wheels/bf0f3a15e0d6583cfaedbca508627b06746fa41a/index.html + --target=$ROOT_DIR/python/ray/pyarrow_files pyarrow==0.12.0.RAY \ + --find-links https://s3-us-west-2.amazonaws.com/arrow-wheels/9357dc130789ee42f8181d8724bee1d5d1509060/index.html bazel build //:ray_pkg -c opt # Copy files and skip existing files cp -r -n $ROOT_DIR/bazel-genfiles/ray_pkg/ray $ROOT_DIR/python || true diff --git a/ci/travis/install-dependencies.sh b/ci/travis/install-dependencies.sh index 77878247a..287fa62a4 100755 --- a/ci/travis/install-dependencies.sh +++ b/ci/travis/install-dependencies.sh @@ -24,9 +24,8 @@ if [[ "$PYTHON" == "2.7" ]] && [[ "$platform" == "linux" ]]; then wget https://repo.continuum.io/miniconda/Miniconda2-4.5.4-Linux-x86_64.sh -O miniconda.sh -nv bash miniconda.sh -b -p $HOME/miniconda export PATH="$HOME/miniconda/bin:$PATH" - pip install -q cython==0.29.0 gym==0.10.11 opencv-python-headless pyyaml pandas==0.23.4 requests \ + pip install -q scipy tensorflow cython==0.29.0 gym==0.10.11 opencv-python-headless pyyaml pandas==0.23.4 requests \ feather-format lxml openpyxl xlrd py-spy setproctitle faulthandler pytest-timeout mock flaky networkx - conda install -y scipy tensorflow elif [[ "$PYTHON" == "3.5" ]] && [[ "$platform" == "linux" ]]; then sudo apt-get update sudo apt-get install -y python-dev python-numpy build-essential curl unzip tmux gdb @@ -34,9 +33,8 @@ elif [[ "$PYTHON" == "3.5" ]] && [[ "$platform" == "linux" ]]; then wget https://repo.continuum.io/miniconda/Miniconda3-4.5.4-Linux-x86_64.sh -O miniconda.sh -nv bash miniconda.sh -b -p $HOME/miniconda export PATH="$HOME/miniconda/bin:$PATH" - pip install -q cython==0.29.0 gym opencv-python-headless pyyaml pandas==0.23.4 requests \ + pip install -q scipy tensorflow cython==0.29.0 gym opencv-python-headless pyyaml pandas==0.23.4 requests \ feather-format lxml openpyxl xlrd py-spy setproctitle pytest-timeout flaky networkx - conda install -y scipy tensorflow elif [[ "$PYTHON" == "2.7" ]] && [[ "$platform" == "macosx" ]]; then # check that brew is installed which -s brew