From f18bc5f56c664dc4a57a534fb1d130c2650100e4 Mon Sep 17 00:00:00 2001 From: Wei Qi Lu Date: Thu, 12 Mar 2026 14:18:50 -0700 Subject: [PATCH] python(fix): update pandas and pandas-stub upperbound version --- python/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index f9913ceda..4ebbb1c18 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -26,7 +26,7 @@ keywords = ["sift", "sift-stack", "siftstack", "sift_py"] dependencies = [ "grpcio~=1.13", "PyYAML~=6.0", - "pandas~=2.0", + "pandas>=2.0,<3.1", "protobuf>=5.0", "pydantic~=2.10", # Support python 3.9+ typing in older versons of python. @@ -36,7 +36,7 @@ dependencies = [ "requests-toolbelt~=1.0", "alive-progress~=3.0", # May move these to optional dependencies in the future. - "pandas-stubs~=2.0", + "pandas-stubs>=2.0,<4.0", "types-PyYAML~=6.0", "types-protobuf>=5.0", "typing-extensions~=4.6",