From 8c5388ca6043a6ffc4f6004fbbc9d02c46b1f69d Mon Sep 17 00:00:00 2001 From: LeoGrin Date: Mon, 9 Mar 2026 11:08:19 -0400 Subject: [PATCH] Remove upper limits from dependencies Remove version caps on pandas (<3), typing-extensions (<5), and posthog (~=6.7) to avoid unnecessary dependency conflicts. Co-Authored-By: Claude Opus 4.6 --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7730faf..01ace21 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,10 +21,10 @@ classifiers = [ requires-python = ">=3.9" dependencies = [ "numpy>=1.21.6", - "pandas>=1.4.0,<3", + "pandas>=1.4.0", "scikit-learn>=1.2.0", - "typing-extensions>=4.12,<5", - "posthog~=6.7", + "typing-extensions>=4.12", + "posthog>=6.7", "platformdirs>=4", "filelock>=3.19.1", "requests>=2.32.5",