From 54ed76dc7c07deb4b636d6a215c34fee6ffc3ffd Mon Sep 17 00:00:00 2001 From: Sejmou Date: Wed, 8 Jan 2025 14:50:18 +0100 Subject: [PATCH] enforce numpy < 2 in pyproject.toml (NumPy v2 breaks inference atm) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d911282..264b2e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ repository = "https://github.com/inkrement/nade.git" python = ">= 3.9" pybind11 = ">= 2.0" fasttext-wheel = ">= 0.9.2" -numpy = ">= 1.19" +numpy = ">= 1.19 < 2" lightgbm = ">= 3.2" pyarrow = ">= 6.0.1"