From 1bf1972de44d0bc20a9e0406ec05e290ff7cf29a Mon Sep 17 00:00:00 2001 From: Will Jones Date: Mon, 23 Feb 2026 10:33:48 -0800 Subject: [PATCH 1/2] ci: fix python datafusion test --- python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index a533726fe1b..6dce542e835 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -60,7 +60,7 @@ tests = [ # Only test tensorflow on linux for now. We will deprecate tensorflow soon. "tensorflow; sys_platform == 'linux'", "tqdm", - "datafusion>=50.1", + "datafusion>=50.1<52", ] dev = ["ruff==0.4.1", "pyright"] benchmarks = ["pytest-benchmark"] From 1528b79c0aca1e836e3678eb310df41be393c3d4 Mon Sep 17 00:00:00 2001 From: Will Jones Date: Mon, 23 Feb 2026 10:37:18 -0800 Subject: [PATCH 2/2] typo --- python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 6dce542e835..2494280c9bb 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -60,7 +60,7 @@ tests = [ # Only test tensorflow on linux for now. We will deprecate tensorflow soon. "tensorflow; sys_platform == 'linux'", "tqdm", - "datafusion>=50.1<52", + "datafusion>=50.1,<52", ] dev = ["ruff==0.4.1", "pyright"] benchmarks = ["pytest-benchmark"]