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/5] 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/5] 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/5] 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/5] 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/5] 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