Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork366
Closed
Description
Zarr version
latest main
Numcodecs version
v0.16.1
Python Version
3.13
Operating System
Windows
Installation
pip install into a virtual environment
Description
On the latestmain branch,zarr.group raises aFileNotFoundError when creating a new group - see example code below.
Error:
File "C:\Users\kimme\Documents\Repos\forked\zarr-python\src\zarr\storage\_common.py", line 361, in make_store_path store = await LocalStore.open(root=store_like, mode=mode) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\Users\kimme\Documents\Repos\forked\zarr-python\src\zarr\storage\_local.py", line 142, in open await store._open() File "C:\Users\kimme\Documents\Repos\forked\zarr-python\src\zarr\storage\_local.py", line 154, in _open raise FileNotFoundError(f"{self.root} does not exist")FileNotFoundError: data\example.zarr does not existSteps to reproduce
# /// script# requires-python = ">=3.11"# dependencies = [# "zarr@git+https://github.com/zarr-developers/zarr-python.git@main",# ]# ///## This script automatically imports the development branch of zarr to check for issuesimportzarrroot=zarr.group('data/example.zarr')
Additional output
No response