From 09cb942435a08f969174580becc40c2aba18e646 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Fri, 20 Mar 2026 16:33:00 -0500 Subject: [PATCH] chore: pin peewee and polars to exact versions (#24) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #24 Pins the two unpinned dependencies in requirements.txt: - peewee (unversioned → 3.19.0) - polars (unversioned → 1.36.1) All other dependencies were already pinned with ==. Co-Authored-By: Claude Sonnet 4.6 --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 7c11a2c..a401a00 100644 --- a/requirements.txt +++ b/requirements.txt @@ -23,9 +23,9 @@ multidict==6.1.0 numpy==2.1.2 packaging==24.1 pandas==2.2.3 -peewee +peewee==3.19.0 pillow==11.0.0 -polars +polars==1.36.1 pluggy==1.5.0 propcache==0.2.0 # pyarrow==17.0.0 -- 2.25.1