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

Revert version requirement for mlflow #7742

Merged
merged 12 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from 11 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
5 changes: 2 additions & 3 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 All @@ -118,7 +119,7 @@ jobs:
python -m unittest -v
env:
QUICKTEST: True
PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION: python # https://github.com/Project-MONAI/MONAI/issues/4354
# PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION: python # https://github.com/Project-MONAI/MONAI/issues/4354

packaging:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -203,8 +204,6 @@ jobs:
ls -al
python -m pip install -r requirements-dev.txt
python -m unittest -v
env:
PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION: python # https://github.com/Project-MONAI/MONAI/issues/4354

build-docs:
runs-on: ubuntu-latest
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>=1.28.0
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>=1.28.0
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>=1.28.0
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>=1.28.0
matplotlib =
matplotlib
clearml =
Expand Down
Loading