Skip to content

Commit

Permalink
Temporarily avoid broken numpy dependency (#757)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpkroth authored Jun 25, 2024
1 parent ecfb5be commit c7a4823
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlos_core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def _get_long_desc_from_readme(base_url: str) -> dict:
'scikit-learn>=1.2',
'joblib>=1.1.1', # CVE-2022-21797: scikit-learn dependency, addressed in 1.2.0dev0, which isn't currently released
'scipy>=1.3.2',
'numpy>=1.24',
'numpy>=1.24', 'numpy<2.0.0', # FIXME: https://github.com/numpy/numpy/issues/26710
'pandas >= 2.2.0;python_version>="3.9"', 'Bottleneck > 1.3.5;python_version>="3.9"',
'pandas >= 1.0.3;python_version<"3.9"',
'ConfigSpace>=0.7.1',
Expand Down

0 comments on commit c7a4823

Please sign in to comment.