From edec2ab01b4754599fa5b1972cebeea93d73df0a Mon Sep 17 00:00:00 2001 From: psobolewskiPhD <3258802+besyskymnbk@users.noreply.github.com> Date: Sun, 3 Oct 2021 23:24:28 +0200 Subject: [PATCH] admin/bump-readlif-for-multi-scene (#327) `Readlif` has been update to better handle scene names that have a parent/child structure. This change addresses the issue originally reported here: https://github.com/AllenCellModeling/aicsimageio/issues/277 Bumping the version requirement on `readlif` is a significant quality-of-life improvement for `aicsimageio` users, as well as the new multi-scene reading widget in `napari-aicsimageio`. For example, in the case of multi-well experiments, regions of interest may have the same names (R1, R1 ...), but the parent (well) names will differ (A1, B2, etc.). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b9d33b1..6283bc4 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def run(self): format_libs: Dict[str, List[str]] = { "base-imageio": ["imageio[ffmpeg]>=2.9.0,<3", "Pillow>=8.2.0,!=8.3.0,<9"], - "lif": ["readlif>=0.6.1"], + "lif": ["readlif>=0.6.4"], "czi": ["aicspylibczi>=3.0.2"], "bioformats": ["bioformats_jar", "wrapt>=1.12"], }