From 3165737e8bbe655b1c705286a82c9da13315d513 Mon Sep 17 00:00:00 2001 From: David <9059044+Tansito@users.noreply.github.com> Date: Mon, 18 Nov 2024 14:38:32 -0500 Subject: [PATCH 1/4] bump numpy version --- client/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/requirements.txt b/client/requirements.txt index 9ec845d5e..f7198acba 100644 --- a/client/requirements.txt +++ b/client/requirements.txt @@ -14,6 +14,6 @@ s3fs>=2023.6.0 opentelemetry-instrumentation-requests>=0.40b0 ipywidgets>=8.1.2, <9 ipython>=8.10.0, <9 -numpy>=1.26.4, <2 +numpy>=1.17, <3 aiohttp>=3.10.0, <4 zipp==3.19.1 From 99814e74a22cf2186dd608289b3b431eac624b67 Mon Sep 17 00:00:00 2001 From: David <9059044+Tansito@users.noreply.github.com> Date: Mon, 18 Nov 2024 14:50:14 -0500 Subject: [PATCH 2/4] bump pyarrow version --- client/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/client/requirements.txt b/client/requirements.txt index f7198acba..effc1850f 100644 --- a/client/requirements.txt +++ b/client/requirements.txt @@ -15,5 +15,6 @@ opentelemetry-instrumentation-requests>=0.40b0 ipywidgets>=8.1.2, <9 ipython>=8.10.0, <9 numpy>=1.17, <3 +pyarrow>=16.0.0, <19 aiohttp>=3.10.0, <4 zipp==3.19.1 From 8d7fb6dc9d0e1e3f8f872aee41f9685ee15da3dd Mon Sep 17 00:00:00 2001 From: David <9059044+Tansito@users.noreply.github.com> Date: Mon, 18 Nov 2024 14:58:38 -0500 Subject: [PATCH 3/4] Remove pyarrow from the dockerfile --- Dockerfile-ray-node | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile-ray-node b/Dockerfile-ray-node index f36635a2d..5e2ffcd4c 100644 --- a/Dockerfile-ray-node +++ b/Dockerfile-ray-node @@ -29,7 +29,6 @@ RUN pip install --upgrade --no-cache-dir pip>=24.2 &&\ RUN pip install -r requirements.txt --no-cache-dir &&\ pip install . --no-cache-dir &&\ - pip install --no-cache-dir pyarrow==14.0.1 &&\ pip install --no-cache-dir certifi==2024.7.4 &&\ cp -r -n /usr/local/lib64/python3.11/site-packages/symengine /usr/local/lib/python3.11/site-packages &&\ cp -r -n /usr/local/lib/python3.11/site-packages/symengine /usr/local/lib64/python3.11/site-packages From ef0bbe210383ab6c0f3c1bf839483cb943f6e6df Mon Sep 17 00:00:00 2001 From: David <9059044+Tansito@users.noreply.github.com> Date: Mon, 18 Nov 2024 15:16:34 -0500 Subject: [PATCH 4/4] moved certifi from dockerfile to requirements --- Dockerfile-ray-node | 1 - client/requirements.txt | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile-ray-node b/Dockerfile-ray-node index 5e2ffcd4c..8fb550865 100644 --- a/Dockerfile-ray-node +++ b/Dockerfile-ray-node @@ -29,7 +29,6 @@ RUN pip install --upgrade --no-cache-dir pip>=24.2 &&\ RUN pip install -r requirements.txt --no-cache-dir &&\ pip install . --no-cache-dir &&\ - pip install --no-cache-dir certifi==2024.7.4 &&\ cp -r -n /usr/local/lib64/python3.11/site-packages/symengine /usr/local/lib/python3.11/site-packages &&\ cp -r -n /usr/local/lib/python3.11/site-packages/symengine /usr/local/lib64/python3.11/site-packages diff --git a/client/requirements.txt b/client/requirements.txt index effc1850f..015fd0f20 100644 --- a/client/requirements.txt +++ b/client/requirements.txt @@ -15,6 +15,8 @@ opentelemetry-instrumentation-requests>=0.40b0 ipywidgets>=8.1.2, <9 ipython>=8.10.0, <9 numpy>=1.17, <3 +# Minimum version of pyarrow to support the major version from numpy pyarrow>=16.0.0, <19 aiohttp>=3.10.0, <4 zipp==3.19.1 +certifi==2024.7.4