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

Avoid installing the latest MLfow to prevent doctests from failing #3135

Merged
merged 2 commits into from
Nov 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def get_extras_require() -> Dict[str, List[str]]:
"plotly>=4.0.0",
"scikit-learn>=0.24.2",
"scikit-optimize",
"mlflow",
"mlflow<1.22.0",
],
"document": [
# TODO(nzw): Remove the version constraint after resolving the issue
Expand Down Expand Up @@ -89,7 +89,7 @@ def get_extras_require() -> Dict[str, List[str]]:
"fakeredis",
"lightgbm",
"matplotlib>=3.0.0",
"mlflow",
"mlflow<1.22.0",
"mpi4py",
"mxnet",
"pandas",
Expand Down Expand Up @@ -131,7 +131,7 @@ def get_extras_require() -> Dict[str, List[str]]:
"chainer>=5.0.0",
"cma",
"lightgbm",
"mlflow",
"mlflow<1.22.0",
"wandb",
"mpi4py",
"mxnet",
Expand Down