From 323caaed2c06a8e6abcf9dd3f31548752e9e48dc Mon Sep 17 00:00:00 2001 From: Agisilaos Kounelis Date: Thu, 22 Jan 2026 17:08:32 +0200 Subject: [PATCH] Restrict pandas version to below 3 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4fabff4fd0..b8f88f2dd3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,7 +57,7 @@ test = [ "hypothesis", "psutil", "pyarrow", - "pandas", + "pandas<3", "dask[distributed]", ] @@ -118,6 +118,6 @@ test-requires = [ "hypothesis", "psutil", "pyarrow", - "pandas", + "pandas<3", ] test-command = "pytest {project}"