From 240e4d34ed5aa503cb8f5bcc3a281fa64c7142b2 Mon Sep 17 00:00:00 2001 From: Melisande Croft <63270704+melisande-c@users.noreply.github.com> Date: Wed, 20 Nov 2024 23:07:37 +0100 Subject: [PATCH] Fix(dependencies): Set bioimageio-core version greater than 0.7.0 (#280) ### Description - **What**: Set bioimageio-core version greater than 0.7.0 - **Why**: Following the new `bioimage-core` release (0.7.0), we needed to make some fixes (part of PR #279). The most convenient function to solve this problem, `resolve_and_extract` only exists since 0.7.0. - **How**: In pyproject.toml ### Changes Made - **Modified**: pyproject.toml --- **Please ensure your PR meets the following requirements:** - [x] Code builds and passes tests locally, including doctests - [ ] New tests have been added (for bug fixes/features) - [x] Pre-commit passes - [ ] PR to the documentation exists (for bug fixes / features) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9c13382c..b38b1c85 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,7 +45,7 @@ dependencies = [ 'numpy<2.0.0', 'torch>=2.0.0', 'torchvision', - 'bioimageio.core>=0.6.9', + 'bioimageio.core>=0.7.0', 'tifffile', 'psutil', 'pydantic>=2.5,<2.9',