From 740e2de39aada3341dd767660be095f08d1e7b63 Mon Sep 17 00:00:00 2001 From: bjhardcastle Date: Thu, 23 May 2024 14:53:28 -0700 Subject: [PATCH] Cap zarr version for compatibility with hdmf-zarr writing - 2.18.1 introduces bug when writing list of str in `NWBFile.experimenter` - detailed here: https://github.com/hdmf-dev/hdmf-zarr/issues/197 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index db7a00a..23b72de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ dependencies = [ "pandas>=2.0", "pynwb", "rich>=13.5.2", - "zarr>=2.16.1", + "zarr<2.18.1", "matplotlib>=3.7.2", "scipy>=1.9.3", "DynamicRoutingTask>=0.1.94",