We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
v3 main
?
Seems to accept -1 fill value for uint32 arrays.
-1
def test_bad_fill_value(): import zarr import numpy as np store = zarr.store.MemoryStore({}, mode="w") group = zarr.group(store=store, overwrite=True) zarray = group.create_array( name="foo", shape=(2,), fill_value=-1, chunk_shape=(1,), dtype=np.uint32, exists_ok=True, ) print(zarray.fill_value) test_bad_fill_value() # 4294967295
No response
The text was updated successfully, but these errors were encountered:
fixed by #2209
Sorry, something went wrong.
No branches or pull requests
Zarr version
v3 main
Numcodecs version
?
Python Version
?
Operating System
?
Installation
?
Description
Seems to accept
-1
fill value for uint32 arrays.Steps to reproduce
Additional output
No response
The text was updated successfully, but these errors were encountered: