From d4208e3838a1ebc2ed1097369c17eaea86454cf5 Mon Sep 17 00:00:00 2001 From: Xu Che Date: Wed, 25 Mar 2026 16:04:32 +0800 Subject: [PATCH] fix(python): cap substrait below 0.85.0 Signed-off-by: Xu Che --- vortex-python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vortex-python/pyproject.toml b/vortex-python/pyproject.toml index 9e962667bf4..f4e47a5656b 100644 --- a/vortex-python/pyproject.toml +++ b/vortex-python/pyproject.toml @@ -6,7 +6,7 @@ dynamic = ["version", "description", "authors"] readme = "README.md" dependencies = [ "pyarrow>=17.0.0", - "substrait>=0.23.0", + "substrait>=0.23.0,<0.85.0", "typing-extensions>=4.5.0", ] requires-python = ">= 3.11"