Skip to content

Commit

Permalink
Revert version requirement for mlflow (#7742)
Browse files Browse the repository at this point in the history
Revert #7659

### Types of changes
<!--- Put an `x` in all the boxes that apply, and remove the not
applicable items -->
- [x] Non-breaking change (fix or new feature that would not break
existing functionality).
- [ ] Breaking change (fix or new feature that would cause existing
functionality to change).
- [ ] New tests added to cover the changes.
- [ ] Integration tests passed locally by running `./runtests.sh -f -u
--net --coverage`.
- [ ] Quick tests passed locally by running `./runtests.sh --quick
--unittests --disttests`.
- [ ] In-line docstrings updated.
- [ ] Documentation updated, tested `make html` command in the `docs/`
folder.

---------

Signed-off-by: YunLiu <55491388+KumoLiu@users.noreply.github.com>
  • Loading branch information
KumoLiu authored May 10, 2024
1 parent 258f56d commit 4af2306
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ jobs:
python -m pip install --pre -U itk
- name: Install the dependencies
run: |
python -m pip install --user --upgrade pip wheel
python -m pip install torch==1.13.1 torchvision==0.14.1
cat "requirements-dev.txt"
python -m pip install -r requirements-dev.txt
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ sphinx-autodoc-typehints==1.11.1
pandas
einops
transformers<4.22; python_version <= '3.10' # https://github.com/Project-MONAI/MONAI/issues/5157
mlflow>=1.28.0, <=2.11.3
mlflow>=2.12.2
clearml>=1.10.0rc0
tensorboardX
imagecodecs; platform_system == "Linux" or platform_system == "Darwin"
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pandas
requests
einops
transformers>=4.36.0
mlflow>=1.28.0, <=2.11.3
mlflow>=2.12.2
clearml>=1.10.0rc0
matplotlib!=3.5.0
tensorboardX
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ all =
pandas
einops
transformers<4.22; python_version <= '3.10'
mlflow>=1.28.0, <=2.11.3
mlflow>=2.12.2
clearml>=1.10.0rc0
matplotlib
tensorboardX
Expand Down Expand Up @@ -125,7 +125,7 @@ einops =
transformers =
transformers<4.22; python_version <= '3.10'
mlflow =
mlflow>=1.28.0, <=2.11.3
mlflow>=2.12.2
matplotlib =
matplotlib
clearml =
Expand Down

0 comments on commit 4af2306

Please sign in to comment.