From d85b526644e36bbe5901085f8b19ab0e21709fcd Mon Sep 17 00:00:00 2001 From: kingbri Date: Sun, 23 Jun 2024 21:40:09 -0400 Subject: [PATCH] Dependencies: Pin numpy v2.x breaks many upstream dependencies (torch). Pin until repos are fixed. Signed-off-by: kingbri --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 34f0153..effc0f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,9 @@ dependencies = [ "lm-format-enforcer >= 0.9.6", "aiofiles", + # TEMP: Remove once 2.x is fixed in upstream + "numpy < 2.0.0", + # TODO: Maybe move these to a downloader feature? "aiohttp", "huggingface_hub",