From 39e809fa03aadd2b883c9098f87342a428550b35 Mon Sep 17 00:00:00 2001 From: Simon Mo Date: Tue, 13 Oct 2020 09:27:52 -0700 Subject: [PATCH] Update microbenchmark script to use Python 3.8 wheel (#11357) --- ci/microbenchmark/run.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ci/microbenchmark/run.sh b/ci/microbenchmark/run.sh index 81784679a..690851f5e 100644 --- a/ci/microbenchmark/run.sh +++ b/ci/microbenchmark/run.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -ray_version="" +ray_version="" commit="" ray_branch="" @@ -42,11 +42,11 @@ echo "version: $ray_version" echo "commit: $commit" echo "branch: $ray_branch" -rm "ray-$ray_version-cp36-cp36m-manylinux1_x86_64.whl" || true -wget "https://s3-us-west-2.amazonaws.com/ray-wheels/$ray_branch/$commit/ray-$ray_version-cp36-cp36m-manylinux1_x86_64.whl" - +rm "ray-$ray_version-cp38-cp38-manylinux1_x86_64.whl" || true +wget "https://s3-us-west-2.amazonaws.com/ray-wheels/$ray_branch/$commit/ray-$ray_version-cp38-cp38-manylinux1_x86_64.whl" + pip uninstall -y -q ray -pip install -U "ray-$ray_version-cp36-cp36m-manylinux1_x86_64.whl" +pip install -U "ray-$ray_version-cp38-cp38-manylinux1_x86_64.whl" unset RAY_ADDRESS OMP_NUM_THREADS=64 ray microbenchmark