Skip to content

Commit 4af2306

Browse files
authored
Revert version requirement for mlflow (#7742)
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 <[email protected]>
1 parent 258f56d commit 4af2306

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/pythonapp.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ jobs:
100100
python -m pip install --pre -U itk
101101
- name: Install the dependencies
102102
run: |
103+
python -m pip install --user --upgrade pip wheel
103104
python -m pip install torch==1.13.1 torchvision==0.14.1
104105
cat "requirements-dev.txt"
105106
python -m pip install -r requirements-dev.txt

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ sphinx-autodoc-typehints==1.11.1
2222
pandas
2323
einops
2424
transformers<4.22; python_version <= '3.10' # https://github.com/Project-MONAI/MONAI/issues/5157
25-
mlflow>=1.28.0, <=2.11.3
25+
mlflow>=2.12.2
2626
clearml>=1.10.0rc0
2727
tensorboardX
2828
imagecodecs; platform_system == "Linux" or platform_system == "Darwin"

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pandas
3434
requests
3535
einops
3636
transformers>=4.36.0
37-
mlflow>=1.28.0, <=2.11.3
37+
mlflow>=2.12.2
3838
clearml>=1.10.0rc0
3939
matplotlib!=3.5.0
4040
tensorboardX

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ all =
6666
pandas
6767
einops
6868
transformers<4.22; python_version <= '3.10'
69-
mlflow>=1.28.0, <=2.11.3
69+
mlflow>=2.12.2
7070
clearml>=1.10.0rc0
7171
matplotlib
7272
tensorboardX
@@ -125,7 +125,7 @@ einops =
125125
transformers =
126126
transformers<4.22; python_version <= '3.10'
127127
mlflow =
128-
mlflow>=1.28.0, <=2.11.3
128+
mlflow>=2.12.2
129129
matplotlib =
130130
matplotlib
131131
clearml =

0 commit comments

Comments
 (0)