From 54f681c29cdc84365ba1e839d05a9a998cb15482 Mon Sep 17 00:00:00 2001 From: Samuel Bohman Date: Fri, 25 Jul 2025 20:47:52 +0200 Subject: [PATCH] Downgrade NumPy < 2.0 in pyt_huggingface.ubuntu.amd.Dockerfile --- docker/pyt_huggingface.ubuntu.amd.Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/pyt_huggingface.ubuntu.amd.Dockerfile b/docker/pyt_huggingface.ubuntu.amd.Dockerfile index 3ab9eaa..2b7be15 100644 --- a/docker/pyt_huggingface.ubuntu.amd.Dockerfile +++ b/docker/pyt_huggingface.ubuntu.amd.Dockerfile @@ -66,4 +66,5 @@ RUN locale-gen en_US.UTF-8 # record configuration for posterity RUN pip3 list - +# install numpy < 2.0 to avoid compatibility issues +RUN pip3 install "numpy<2"