Skip to content

Commit 588bc3a

Browse files
authored
Merge pull request #388 from bioimage-io/patch_release
patch release: do not assume inputs are tileable
2 parents 5449618 + 569845d commit 588bc3a

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,11 @@ The model specification and its validation tools can be found at <https://github
124124

125125
## Changelog
126126

127+
### 0.6.3
128+
129+
* Fix [#386](https://github.com/bioimage-io/core-bioimage-io-python/issues/386)
130+
* (in model inference testing) stop assuming model inputs are tileable
131+
127132
### 0.6.2
128133

129134
* Fix [#384](https://github.com/bioimage-io/core-bioimage-io-python/issues/384)

bioimageio/core/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "0.6.2"
2+
"version": "0.6.3"
33
}

bioimageio/core/_resource_tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def get_ns(n: int):
253253
) as prediction_pipeline:
254254
for n, batch_size, inputs, exptected_output_shape in generate_test_cases():
255255
error: Optional[str] = None
256-
result = prediction_pipeline.predict_sample_with_blocking(inputs)
256+
result = prediction_pipeline.predict_sample_without_blocking(inputs)
257257
if len(result.members) != len(exptected_output_shape):
258258
error = (
259259
f"Expected {len(exptected_output_shape)} outputs,"

0 commit comments

Comments
 (0)