From 9c34e038d7e2f5b0e58eab7dffaa670f7c99be23 Mon Sep 17 00:00:00 2001 From: Marco Inacio Date: Thu, 14 May 2026 21:00:51 +0100 Subject: [PATCH] Set zarr version range in pyproject.toml zarr 3.0.x: has RegularChunkGrid, but lacks zarr.core.dtype zarr 3.1.x: has both RegularChunkGrid and zarr.core.dtype zarr 3.2.x: has zarr.core.dtype, but no longer has RegularChunkGrid as a class --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 53323846..03cedf49 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ dependencies = [ "tqdm>=4.65.0", "transformers", "xarray>=2024.1.0", - "zarr>=3.0.0", + "zarr>=3.1.0,<3.2", ] classifiers = [ "Programming Language :: Python :: 3.10",