From d058d4e783bc5a6a1cc5e21be761aadc4a6d1262 Mon Sep 17 00:00:00 2001 From: jluethi Date: Wed, 30 Oct 2024 18:49:09 +0100 Subject: [PATCH] Update tasks-core dependency to avoid numpy conflict --- setup.cfg | 2 +- src/napari_ome_zarr_navigator/_tests/test_OMEZarrImage.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 16187a1..2a8441a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -35,7 +35,7 @@ install_requires = magicgui qtpy scikit-image - fractal-tasks-core==1.0.2 + fractal-tasks-core==1.3.2 napari-ome-zarr ome-zarr wget diff --git a/src/napari_ome_zarr_navigator/_tests/test_OMEZarrImage.py b/src/napari_ome_zarr_navigator/_tests/test_OMEZarrImage.py index 9380706..c3194e2 100644 --- a/src/napari_ome_zarr_navigator/_tests/test_OMEZarrImage.py +++ b/src/napari_ome_zarr_navigator/_tests/test_OMEZarrImage.py @@ -102,7 +102,7 @@ def test_wrong_zarr_urls(zenodo_zarr): OMEZarrImage(zarr_but_not_image) assert expected_error in str(exc_info.value) assert "multiscales" in str(exc_info.value) - assert "field required" in str(exc_info.value) + assert "Field required" in str(exc_info.value) def test_roi_loading_from_indices(ome_zarr_image_2d):