You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also just ran into this and noticed that it depends on the version of fsspec: It was working fine for me on prior versions (like the one just before, fsspec==2023.6.0), but breaks with fsspec==2023.9.0
I have also encountered errors with the fsspec==2023.9.0 update and having to exclude the versions for my dependencies. Here is a small example to reproduce the error we have encountered:
from ome_zarr.io import parse_url
from ome_zarr.writer import write_image
from ome_zarr.scale import Scaler
import numpy as np
import zarr
path = "test.zarr"
data = np.ndarray((10,10))
store = parse_url(path, mode="w").store
root = zarr.group(store=store)
scaler = Scaler(max_layer=0, method="nearest")
write_image(image=data, axes="yx", group=root, scaler=scaler)
write_image(image=data, group=root)
The Test pre-releases workflow failed on 2024-11-26 23:06 UTC
The most recent failing test was on windows-latest py py311
with commit: fbf0a2e
Full run: https://github.com/ome/ome-zarr-py/actions/runs/12040502840
(This post will be updated if another test fails, as long as this issue remains open.)
The text was updated successfully, but these errors were encountered: