Skip to content

Commit

Permalink
Avoid installing the latest MLfow to prevent doctests from failing (#…
Browse files Browse the repository at this point in the history
…3135)

* Avoid installing latest mlflow
  • Loading branch information
himkt committed Nov 30, 2021
1 parent 51b5483 commit 2a9f863
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 2a9f863

Please sign in to comment.