From e4ff14890428a706c08cb7a70d4a05eb549f06a5 Mon Sep 17 00:00:00 2001 From: Nikita Makarov Date: Fri, 20 Mar 2026 16:02:02 +0000 Subject: [PATCH 1/2] Added pandas version checks --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4edd460..4c08990 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ classifiers = [ # dependencies dependencies = [ "numpy", - "pandas", + "pandas<3.0.0", "transformers", "scikit-learn", "jupyter", @@ -58,7 +58,7 @@ dependencies = [ dev = [ "pytest", "numpy", - "pandas", + "pandas<3.0.0", "transformers", "scikit-learn", "ruff", From cebc52b595867ae1774ae259b04b232a436ba396 Mon Sep 17 00:00:00 2001 From: Nikita Makarov Date: Fri, 20 Mar 2026 16:06:30 +0000 Subject: [PATCH 2/2] Added pandas version checks --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4c08990..00aa66f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ build-backend = "setuptools.build_meta" # Standard entry point for setuptools bu [project] name = "twinweaver" -version = "0.3.0" +version = "0.3.1" description = "Converting longitudinal patient data into text for LLM-based event prediction and forecasting." # --- NEW/UPDATED FIELDS ---