From 30de1286bdb02551d03b7dc1d0846ee4ded88fe8 Mon Sep 17 00:00:00 2001 From: Simon Mo Date: Fri, 14 Feb 2020 13:53:36 -0800 Subject: [PATCH] Use pip install setup.py (#7158) --- ci/travis/install-ray.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/travis/install-ray.sh b/ci/travis/install-ray.sh index 43740eab3..c896ad762 100755 --- a/ci/travis/install-ray.sh +++ b/ci/travis/install-ray.sh @@ -26,14 +26,14 @@ if [[ "$PYTHON" == "3.6" ]]; then npm ci npm run build popd - python setup.py install --user + pip install -e . --verbose popd elif [[ "$LINT" == "1" ]]; then export PATH="$HOME/miniconda/bin:$PATH" pushd "$ROOT_DIR/../../python" - python setup.py install --user + pip install -e . --verbose popd else echo "Unrecognized Python version."