From 81e87f21bc286ea9a6d20ba4f06dcd54e5a0b151 Mon Sep 17 00:00:00 2001 From: Xu Che Date: Wed, 25 Mar 2026 23:18:24 +0800 Subject: [PATCH] fix(vortex-python): cap PyPI substrait before 0.29.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 f4e47a5656b..4563570a45d 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,<0.85.0", + "substrait>=0.23.0,<0.29.0", "typing-extensions>=4.5.0", ] requires-python = ">= 3.11"