From b783f7ca9f757c9685f5b1410a87e48dc7ad6269 Mon Sep 17 00:00:00 2001 From: Tomasz Wrona Date: Wed, 23 Oct 2024 13:20:19 +0200 Subject: [PATCH] Allow Pandas upper bound to be `<3` --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 898a0c66..e1b96f8a 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ def get_version() -> str: "ray[data]>=2.5.0", "duckdb>=0.5.0", "pyarrow>=7.0.0", - "pandas<2.2", + "pandas<3", ], "duckdb": SQL_DEPENDENCIES + [ @@ -63,7 +63,7 @@ def get_version() -> str: "numpy", ], "polars": ["polars"], - "ibis": SQL_DEPENDENCIES + ["ibis-framework[pandas]", "pandas<2.2"], + "ibis": SQL_DEPENDENCIES + ["ibis-framework[pandas]", "pandas<3"], "notebook": ["notebook", "jupyterlab", "ipython>=7.10.0"], "all": SQL_DEPENDENCIES + [ @@ -76,7 +76,7 @@ def get_version() -> str: "ipython>=7.10.0", "duckdb>=0.5.0", "pyarrow>=6.0.1", - "pandas>=2.0.2,<2.2", # because of Ray and ibis + "pandas>=2.0.2,<3", # because of Ray and ibis "ibis-framework[pandas]", "polars", ],