From be78cbe4c5de0e3257868377707f3e94ee43cc0e Mon Sep 17 00:00:00 2001 From: Janis Fix Date: Wed, 26 Jun 2024 13:06:48 +0200 Subject: [PATCH] Limit numpy requirement as ConfigSpace does not support numpy 2.0 yet --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 71e0390..02a31cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ urls = { Documentation = "https://automl.github.io/DEHB/", Github = "https://git name = "DEHB" version = "0.1.1" dependencies = [ - "numpy>=1.18.2", + "numpy>=1.18.2,<2.0", "loguru>=0.5.3", "dask>=2.27.0", "distributed>=2.27.0",