ome-zarr-py
ome-zarr-py copied to clipboard
[test-bot] pip install --pre is failing
The Test pre-releases workflow failed on 2024-10-31 12:34 UTC
The most recent failing test was on windows-latest py py311 with commit: 56f72b06d4912ba5156fe54f913d19df895b9e9e
Full run: https://github.com/ome/ome-zarr-py/actions/runs/11611963148
(This post will be updated if another test fails, as long as this issue remains open.)
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)