From ba56a6d029abed931e3d8bcac5f7c91ddd2ccaf2 Mon Sep 17 00:00:00 2001 From: "R. Garcia-Dias" Date: Wed, 5 Feb 2025 15:26:32 +0000 Subject: [PATCH 1/8] Move test_image_filter.py --- tests/{ => data}/test_image_rw.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/{ => data}/test_image_rw.py (100%) diff --git a/tests/test_image_rw.py b/tests/data/test_image_rw.py similarity index 100% rename from tests/test_image_rw.py rename to tests/data/test_image_rw.py From f5d407845e66a4395dc0f2baa465ff295a810fba Mon Sep 17 00:00:00 2001 From: "R. Garcia-Dias" Date: Tue, 4 Nov 2025 16:13:22 +0000 Subject: [PATCH 2/8] Restrict onnx version to <1.19.1 for Python 3.11 compatibility Signed-off-by: R. Garcia-Dias --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index c9730ee651..2aa5b92aa0 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -50,7 +50,7 @@ h5py nni==2.10.1; platform_system == "Linux" and "arm" not in platform_machine and "aarch" not in platform_machine optuna git+https://github.com/Project-MONAI/MetricsReloaded@monai-support#egg=MetricsReloaded -onnx>=1.13.0 +onnx>=1.13.0, <1.19.1; python_version >= '3.10' onnxruntime; python_version <= '3.10' typeguard<3 # https://github.com/microsoft/nni/issues/5457 filelock<3.12.0 # https://github.com/microsoft/nni/issues/5523 From 09d2c84cda669b90c922afd4f2ad963ae1383bda Mon Sep 17 00:00:00 2001 From: "R. Garcia-Dias" Date: Tue, 4 Nov 2025 16:14:25 +0000 Subject: [PATCH 3/8] Update onnx version constraint for Python 3.11 compatibility Signed-off-by: R. Garcia-Dias --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 2aa5b92aa0..e61947cc89 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -50,7 +50,7 @@ h5py nni==2.10.1; platform_system == "Linux" and "arm" not in platform_machine and "aarch" not in platform_machine optuna git+https://github.com/Project-MONAI/MetricsReloaded@monai-support#egg=MetricsReloaded -onnx>=1.13.0, <1.19.1; python_version >= '3.10' +onnx>=1.13.0, <1.19.1; python_version == '3.11' onnxruntime; python_version <= '3.10' typeguard<3 # https://github.com/microsoft/nni/issues/5457 filelock<3.12.0 # https://github.com/microsoft/nni/issues/5523 From 76a8b9a8724398caa54497136b9e4cf3563e1c7b Mon Sep 17 00:00:00 2001 From: "R. Garcia-Dias" Date: Tue, 4 Nov 2025 16:49:27 +0000 Subject: [PATCH 4/8] DCO Remediation Commit for R. Garcia-Dias I, R. Garcia-Dias , hereby add my Signed-off-by to this commit: ba56a6d029abed931e3d8bcac5f7c91ddd2ccaf2 Signed-off-by: R. Garcia-Dias --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3dbcfa0ae5..e4bcdbb815 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- project-monai +project-monai

**M**edical **O**pen **N**etwork for **AI** From 1cb46a0668c35598f04c7e333ce2832f4baebb00 Mon Sep 17 00:00:00 2001 From: "R. Garcia-Dias" Date: Wed, 5 Nov 2025 08:18:33 +0000 Subject: [PATCH 5/8] Fix onnx version only installing in python 3.11 Signed-off-by: R. Garcia-Dias --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index f9ab09f9d2..ff234c856e 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -51,7 +51,7 @@ h5py nni==2.10.1; platform_system == "Linux" and "arm" not in platform_machine and "aarch" not in platform_machine optuna git+https://github.com/Project-MONAI/MetricsReloaded@monai-support#egg=MetricsReloaded -onnx>=1.13.0, <1.19.1; python_version == '3.11' +onnx>=1.13.0, <1.19.1 onnxruntime; python_version <= '3.10' typeguard<3 # https://github.com/microsoft/nni/issues/5457 filelock<3.12.0 # https://github.com/microsoft/nni/issues/5523 From 9f4d989bc2c51b05fe09a1744cb1547634a358b4 Mon Sep 17 00:00:00 2001 From: "R. Garcia-Dias" Date: Thu, 20 Nov 2025 13:44:15 +0000 Subject: [PATCH 6/8] Adds onnxscript requirement --- requirements-dev.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements-dev.txt b/requirements-dev.txt index ff234c856e..cc400269ad 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -52,6 +52,7 @@ nni==2.10.1; platform_system == "Linux" and "arm" not in platform_machine and "a optuna git+https://github.com/Project-MONAI/MetricsReloaded@monai-support#egg=MetricsReloaded onnx>=1.13.0, <1.19.1 +onnxscript onnxruntime; python_version <= '3.10' typeguard<3 # https://github.com/microsoft/nni/issues/5457 filelock<3.12.0 # https://github.com/microsoft/nni/issues/5523 From 701692c23ae8b02e37d4edfc32f18f7dbcb467da Mon Sep 17 00:00:00 2001 From: "R. Garcia-Dias" Date: Thu, 20 Nov 2025 13:56:29 +0000 Subject: [PATCH 7/8] DCO Remediation Commit for R. Garcia-Dias I, R. Garcia-Dias , hereby add my Signed-off-by to this commit: 9f4d989bc2c51b05fe09a1744cb1547634a358b4 Signed-off-by: R. Garcia-Dias --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e4bcdbb815..a480e856bc 100644 --- a/README.md +++ b/README.md @@ -93,4 +93,4 @@ Ask and answer questions over on [MONAI's GitHub Discussions tab](https://github - PyPI package: - conda-forge: - Weekly previews: -- Docker Hub: +- Docker Hub: \ No newline at end of file From f5a9ddabab69cd5951232dfd832e4412213bc160 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 13:59:00 +0000 Subject: [PATCH 8/8] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a480e856bc..e4bcdbb815 100644 --- a/README.md +++ b/README.md @@ -93,4 +93,4 @@ Ask and answer questions over on [MONAI's GitHub Discussions tab](https://github - PyPI package: - conda-forge: - Weekly previews: -- Docker Hub: \ No newline at end of file +- Docker Hub: