From 3c75b614f9960ed0849cbf0b25460206958c497a Mon Sep 17 00:00:00 2001 From: Alex Wu Date: Wed, 17 Nov 2021 07:15:18 -0800 Subject: [PATCH] [docker] Upgrade numpy version (#20450) ## Why are these changes needed? The change in #20374 was interpreted as a file redirect, not a "greater than" by docker (strangely enough, differently than bash interprets it locally). ## Related issue number ## Checks - [ ] I've run `scripts/format.sh` to lint the changes in this PR. - [ ] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( Co-authored-by: Alex --- docker/base-deps/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/base-deps/Dockerfile b/docker/base-deps/Dockerfile index bdee160b4a90f..02fb2a98655c3 100644 --- a/docker/base-deps/Dockerfile +++ b/docker/base-deps/Dockerfile @@ -54,7 +54,7 @@ RUN sudo apt-get update -y && sudo apt-get upgrade -y \ flatbuffers \ cython==0.29.23 \ # Necessary for Dataset to work properly. - numpy>=1.20 \ + numpy\>=1.20 \ psutil \ blist \ # blist is needed for numpy (which is re-installed when ray is installed)