Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
github-actions bot opened this issue Sep 2, 2023 · 2 comments
Open

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

github-actions bot opened this issue Sep 2, 2023 · 2 comments
Labels
bug Something isn't working

Comments

@github-actions
Copy link

github-actions bot commented Sep 2, 2023

The Test pre-releases workflow failed on 2024-10-14 12:34 UTC

The most recent failing test was on windows-latest py py311
with commit: 56f72b0

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

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

@github-actions github-actions bot added the bug Something isn't working label Sep 2, 2023
@jluethi
Copy link

jluethi commented Sep 4, 2023

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

@blowekamp
Copy link

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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants