From f76dc354e2fe79726b2d5d8464eaf3a289a10a11 Mon Sep 17 00:00:00 2001 From: fynnbe Date: Thu, 2 May 2024 10:23:47 +0200 Subject: [PATCH 1/3] bump patch --- README.md | 4 ++++ bioimageio/core/VERSION | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f607777..6ae4f7ab 100644 --- a/README.md +++ b/README.md @@ -124,6 +124,10 @@ The model specification and its validation tools can be found at Date: Thu, 2 May 2024 14:30:32 +0200 Subject: [PATCH 2/3] don't auto-block in tests --- bioimageio/core/_resource_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bioimageio/core/_resource_tests.py b/bioimageio/core/_resource_tests.py index c84f0027..78f686f6 100644 --- a/bioimageio/core/_resource_tests.py +++ b/bioimageio/core/_resource_tests.py @@ -253,7 +253,7 @@ def get_ns(n: int): ) as prediction_pipeline: for n, batch_size, inputs, exptected_output_shape in generate_test_cases(): error: Optional[str] = None - result = prediction_pipeline.predict_sample_with_blocking(inputs) + result = prediction_pipeline.predict_sample_without_blocking(inputs) if len(result.members) != len(exptected_output_shape): error = ( f"Expected {len(exptected_output_shape)} outputs," From 569845d4d364460cffb4707351c2f91ae2e9c60a Mon Sep 17 00:00:00 2001 From: fynnbe Date: Thu, 2 May 2024 14:38:50 +0200 Subject: [PATCH 3/3] add to changelog --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6ae4f7ab..f83041bc 100644 --- a/README.md +++ b/README.md @@ -127,6 +127,7 @@ The model specification and its validation tools can be found at