ome-zarr-py icon indicating copy to clipboard operation
ome-zarr-py copied to clipboard

[test-bot] pip install --pre is failing

Open github-actions[bot] opened this issue 10 months ago • 2 comments

The Test pre-releases workflow failed on 2024-06-16 01:10 UTC

The most recent failing test was on windows-latest py py39 with commit: ad279574872087e048e66b3a646bfd73b4977f39

Full run: https://github.com/ome/ome-zarr-py/actions/runs/9532192034

(This post will be updated if another test fails, as long as this issue remains open.)

github-actions[bot] avatar Sep 02 '23 12:09 github-actions[bot]

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

jluethi avatar Sep 04 '23 10:09 jluethi

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)

blowekamp avatar Sep 06 '23 12:09 blowekamp