From 63d5200d859422fb606f7bc891c6c3e46366e007 Mon Sep 17 00:00:00 2001 From: Luke Payyapilli Date: Tue, 3 Feb 2026 14:02:44 -0500 Subject: [PATCH] chore: add version ceilings to scientific Python dependencies --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5ecabbc..5a2f959 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,11 +22,11 @@ classifiers = [ ] dependencies = [ "Jinja2 >= 3.1.4", - "numpy >= 1.19.1", + "numpy >= 1.19.1, <3", "openpyxl >= 3.1.2", - "pandas >= 2.0.3", - "scipy >= 1.10.1", - "statsmodels >= 0.14.1", + "pandas >= 2.0.3, <4", + "scipy >= 1.10.1, <2", + "statsmodels >= 0.14.1, <1", "tabulate >= 0.9.0", ]