Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade required dabl version and simplify related dependency rules #836

Merged
merged 3 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions mlos_core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,10 @@ def _get_long_desc_from_readme(base_url: str) -> dict:
setup(
version=VERSION,
install_requires=[
"scikit-learn>=1.2",
# CVE-2022-21797: scikit-learn dependency, addressed in 1.2.0dev0, which
# isn't currently released
"joblib>=1.1.1",
"scikit-learn>=1.3",
"scipy>=1.3.2",
"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>=1.0",
],
Expand Down
4 changes: 2 additions & 2 deletions mlos_viz/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ def _get_long_desc_from_readme(base_url: str) -> dict:
version=VERSION,
install_requires=[
"mlos-bench==" + VERSION,
"dabl>=0.2.6",
"matplotlib<3.9", # FIXME: https://github.com/dabl/dabl/pull/341
"dabl>=0.3.1",
"matplotlib",
"seaborn>=0.12.2",
],
extras_require=extra_requires,
Expand Down
Loading