From 94f8ceeb433a85e4d180099b140aa44095eb9243 Mon Sep 17 00:00:00 2001 From: Filipp Shpomer Date: Thu, 25 Jun 2026 17:21:07 -0700 Subject: [PATCH] chore: drop pandas <3.0 upper bound All pandas 3.0 compatibility fixes are now on main. Removes the last remaining upper-bound version cap. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 497faca20..ea7d60faf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ dependencies = [ "numpy >=1.26.0", "odmlib >=0.1.4", "openpyxl >=3.1.5", - "pandas >=2.2.0, <3.0.0", + "pandas >=2.2.0", "psutil >=6.1.1", "pyinstaller >=6.11.0", "pympler >=1.1",