From 4384af80ac5b6e5c8d57e6c128ba2ff22916cb1d Mon Sep 17 00:00:00 2001 From: Deepyaman Datta Date: Fri, 7 Feb 2025 09:52:01 -0700 Subject: [PATCH 1/2] build(datasets): pin PyArrow until `19.0.1` is out Signed-off-by: Deepyaman Datta --- kedro-datasets/pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kedro-datasets/pyproject.toml b/kedro-datasets/pyproject.toml index 1fcde25c6..520c55043 100644 --- a/kedro-datasets/pyproject.toml +++ b/kedro-datasets/pyproject.toml @@ -200,7 +200,7 @@ docs = [ # Test requirements test = [ - "accelerate<0.32", # Temporary pin + "accelerate<0.32", # Temporary pin "adlfs~=2023.1", "behave==1.2.6", "biopython~=1.73", @@ -236,6 +236,7 @@ test = [ "polars[deltalake,xlsx2csv]>=1.0", "pyarrow>=1.0; python_version < '3.11'", "pyarrow>=7.0; python_version >= '3.11'", # Adding to avoid numpy build errors + "pyarrow<19.0.0", # Temporary pin until https://github.com/apache/arrow/issues/45283 is fixed "pyodbc~=5.0", "pyspark>=3.0; python_version < '3.11'", "pyspark>=3.4; python_version >= '3.11'", From 846a77a14486bf63a06d98d15d3e6a0ce21cca76 Mon Sep 17 00:00:00 2001 From: Deepyaman Datta Date: Fri, 7 Feb 2025 09:59:30 -0700 Subject: [PATCH 2/2] chore(datasets): exclude `19.0.0` instead of bound Signed-off-by: Deepyaman Datta --- kedro-datasets/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kedro-datasets/pyproject.toml b/kedro-datasets/pyproject.toml index 520c55043..7adad9136 100644 --- a/kedro-datasets/pyproject.toml +++ b/kedro-datasets/pyproject.toml @@ -236,7 +236,7 @@ test = [ "polars[deltalake,xlsx2csv]>=1.0", "pyarrow>=1.0; python_version < '3.11'", "pyarrow>=7.0; python_version >= '3.11'", # Adding to avoid numpy build errors - "pyarrow<19.0.0", # Temporary pin until https://github.com/apache/arrow/issues/45283 is fixed + "pyarrow!=19.0.0", # Temporary pin until https://github.com/apache/arrow/issues/45283 is fixed "pyodbc~=5.0", "pyspark>=3.0; python_version < '3.11'", "pyspark>=3.4; python_version >= '3.11'",