From 299e74c1014a8b943dd9639a99cf8cf896d50820 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Ser=C3=B3dio?= Date: Mon, 13 May 2024 22:06:26 -0300 Subject: [PATCH] fix pandas version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Seródio --- build/hpccm/build_docker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/hpccm/build_docker.py b/build/hpccm/build_docker.py index 7628a2f..1e64821 100644 --- a/build/hpccm/build_docker.py +++ b/build/hpccm/build_docker.py @@ -84,7 +84,7 @@ def str2bool(string): Stage0 += shell(commands=[pip_package_install]) # TODO: fix numpy issue with version 1.24 and other fixed reqs -Stage0 += shell(commands=["pip install \"numpy<1.24\" bokeh==2.4.3 \"protobuf<=3.20.1\" \"charset-normalizer<3.0\" \"tornado<6.2\""]) +Stage0 += shell(commands=["pip install \"numpy<1.24\" \"pandas==1.5.2\" bokeh==2.4.3 \"protobuf<=3.20.1\" \"charset-normalizer<3.0\" \"tornado<6.2\""]) if is_devel: Stage0 += shell(commands=["wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && bash Miniconda3-latest-Linux-x86_64.sh -b && cp /root/miniconda3/bin/conda /usr/bin/conda"])