From 67f000a6888c803f6169bab52b1978b3a264e7c7 Mon Sep 17 00:00:00 2001 From: Bruno Carrez Date: Tue, 15 Oct 2024 09:11:36 -0400 Subject: [PATCH] Limit numpy version <2.0 to prevent binary incompatibility with pandas --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9eb03c8a..1b83b38b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ prometheus-api-client = "^0.5.2" pydantic = "^1.10.4" pydantic-mongo = "^1.0.1" pymongo = "^4.3.3" -numpy = ">= 1.24.0" +numpy = "^1.24.0" ldap3 = "^2.9.1" python-hostlist = "^1.23.0" tqdm = "^4.64.1"