From 531dd464a1aa794cc2357a67ebdb80e2153a1b0a Mon Sep 17 00:00:00 2001 From: benjamc Date: Tue, 16 Jul 2024 16:50:22 +0200 Subject: [PATCH] fix(build): restrict package versions Numpy and ConfigSpace's API have changed. Do not incorporate changes yet. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 27ec7e695..9e8467e4b 100644 --- a/setup.py +++ b/setup.py @@ -57,11 +57,11 @@ def read_file(filepath: str) -> str: include_package_data=True, python_requires=">=3.8", install_requires=[ - "numpy>=1.23.3", + "numpy>=1.23.3,<2.0.0", "scipy>=1.9.2", "psutil", "pynisher>=1.0.0", - "ConfigSpace>=0.6.1", + "ConfigSpace>=0.6.1,<1.0.0", "joblib", "scikit-learn>=1.1.2", "pyrfr>=0.9.0",