From ad435b5440466e0ef24134aded0cc815e045d115 Mon Sep 17 00:00:00 2001 From: Enno Hermann Date: Sun, 20 Oct 2024 14:16:18 +0200 Subject: [PATCH] build: again restrict to numpy<2 Some parts of spacy/thinc are still causing issues --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7bef41aa35..d8aab49417 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ classifiers = [ ] dependencies = [ # Core - "numpy>=1.25.2", + "numpy>=1.25.2,<2.0", "cython>=3.0.0", "scipy>=1.11.2", "torch>=2.4",