From a30a5da2a512197d6396b567d4da1d749588c0f2 Mon Sep 17 00:00:00 2001 From: Antonin Stefanutti Date: Fri, 28 Jun 2024 17:00:21 +0200 Subject: [PATCH] Stick to NumPy < 2.0.0 for user-space compatibility --- images/runtime/ray/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/images/runtime/ray/Dockerfile b/images/runtime/ray/Dockerfile index 12ca30ca..6cd1f26c 100644 --- a/images/runtime/ray/Dockerfile +++ b/images/runtime/ray/Dockerfile @@ -120,6 +120,7 @@ RUN yum install -y \ # Install Ray RUN python3 -m pip install --no-cache-dir -U pip \ + 'numpy<2.0.0' \ 'ray[all]==2.23.0' # Restore user workspace