From e64ff481f009e6ecbb61d12270981f1c25ad64d3 Mon Sep 17 00:00:00 2001 From: Wenqi Li Date: Wed, 7 Apr 2021 01:41:36 +0100 Subject: [PATCH 1/3] update docs deps. Signed-off-by: Wenqi Li --- docs/requirements.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index c03e3327f4..acc983129f 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -4,15 +4,13 @@ pytorch-ignite==0.4.4 numpy>=1.17 itk>=5.0, <=5.1.2 nibabel -cucim==0.18.2 -openslide-python==1.1.2 parameterized scikit-image>=0.14.2 tensorboard commonmark==0.9.1 recommonmark==0.6.0 -Sphinx==3.3.0 -sphinx-rtd-theme==0.5.0 +Sphinx==3.5.3 +sphinx-rtd-theme==0.5.2 sphinxcontrib-applehelp sphinxcontrib-devhelp sphinxcontrib-htmlhelp From 1407400da84bebe997ee7b720545f12f105a7025 Mon Sep 17 00:00:00 2001 From: Wenqi Li Date: Wed, 7 Apr 2021 01:44:18 +0100 Subject: [PATCH 2/3] fixes https://github.com/Project-MONAI/MONAI/runs/2283148095\?check_suite_focus\=true\#step:7:8972 Signed-off-by: Wenqi Li --- tests/test_handler_garbage_collector.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_handler_garbage_collector.py b/tests/test_handler_garbage_collector.py index 5e6bd7275c..f8e1393ca3 100644 --- a/tests/test_handler_garbage_collector.py +++ b/tests/test_handler_garbage_collector.py @@ -70,7 +70,8 @@ def _train_func(engine, batch): first_count = gb_count[0] else: # The should be less number of collected objects in the next calls. - self.assertLess(gb_count[0], first_count) + # self.assertLess(gb_count[0], first_count) + continue if __name__ == "__main__": From f38bd95b810aba39d75b96fd1897f6734bfab07f Mon Sep 17 00:00:00 2001 From: Wenqi Li Date: Wed, 7 Apr 2021 01:51:48 +0100 Subject: [PATCH 3/3] Revert "fixes https://github.com/Project-MONAI/MONAI/runs/2283148095\?check_suite_focus\=true\#step:7:8972" This reverts commit 1407400da84bebe997ee7b720545f12f105a7025. Signed-off-by: Wenqi Li --- tests/test_handler_garbage_collector.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_handler_garbage_collector.py b/tests/test_handler_garbage_collector.py index f8e1393ca3..5e6bd7275c 100644 --- a/tests/test_handler_garbage_collector.py +++ b/tests/test_handler_garbage_collector.py @@ -70,8 +70,7 @@ def _train_func(engine, batch): first_count = gb_count[0] else: # The should be less number of collected objects in the next calls. - # self.assertLess(gb_count[0], first_count) - continue + self.assertLess(gb_count[0], first_count) if __name__ == "__main__":