From 82081226a79ba7aaaad10dd30eea458784205685 Mon Sep 17 00:00:00 2001 From: jgmoutafis Date: Thu, 11 Jul 2024 15:07:48 +0300 Subject: [PATCH 1/3] Set pyarrow version to 15.0.0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 60f59281a..fcd4925f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ dependencies = [ "importlib-metadata", "packaging", "pandas>=1.2.4", - "pyarrow>=3.0.0", + "pyarrow==15.0.0", "python-dateutil", "six>=1.10", # Not directly used on the client, but some server-side environments have From fffb19a7190fae342b94a9378317130d4d48fbff Mon Sep 17 00:00:00 2001 From: jgmoutafis Date: Thu, 11 Jul 2024 15:33:00 +0300 Subject: [PATCH 2/3] Set pyarrow version to 16.0.0 --- pyproject.toml | 2 +- requirements-geospatial-py3.9.txt | 2 +- requirements-py3.9.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fcd4925f8..56875d452 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ dependencies = [ "importlib-metadata", "packaging", "pandas>=1.2.4", - "pyarrow==15.0.0", + "pyarrow==16.0.0", "python-dateutil", "six>=1.10", # Not directly used on the client, but some server-side environments have diff --git a/requirements-geospatial-py3.9.txt b/requirements-geospatial-py3.9.txt index e39b3a421..8a2f6a6ba 100644 --- a/requirements-geospatial-py3.9.txt +++ b/requirements-geospatial-py3.9.txt @@ -6,7 +6,7 @@ fiona==1.10b1 numpy==1.26.1 packaging==23.2 pandas==2.1.1 -pyarrow==14.0.1 +pyarrow==16.0.0 python-dateutil==2.8.2 pytz==2023.3.post1 rasterio==1.4a3 diff --git a/requirements-py3.9.txt b/requirements-py3.9.txt index cd3b52f3d..0349fa04f 100644 --- a/requirements-py3.9.txt +++ b/requirements-py3.9.txt @@ -5,7 +5,7 @@ importlib-metadata==7.0.1 numpy==1.26.4 packaging==23.2 pandas==2.2.0 -pyarrow==15.0.0 +pyarrow==16.0.0 python-dateutil==2.8.2 pytz==2024.1 six==1.16.0 From ee2e7033463638a6a9db27560d78aacd86cc71ce Mon Sep 17 00:00:00 2001 From: jgmoutafis Date: Thu, 11 Jul 2024 16:51:03 +0300 Subject: [PATCH 3/3] Allow for pyarrow versions >= 16.0.0. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 56875d452..285d9d840 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ dependencies = [ "importlib-metadata", "packaging", "pandas>=1.2.4", - "pyarrow==16.0.0", + "pyarrow>=16.0.0", "python-dateutil", "six>=1.10", # Not directly used on the client, but some server-side environments have