Skip to content

Commit

Permalink
fix(build): restrict package versions
Browse files Browse the repository at this point in the history
Numpy and ConfigSpace's API have changed. Do not incorporate changes yet.
  • Loading branch information
benjamc committed Jul 16, 2024
1 parent c1dc29a commit 531dd46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 531dd46

Please sign in to comment.