Tom White
Tom White
FYI I tried to use fsspec's `missing_exceptions`, but it no longer works from commit 4e633ad9aa434304296900790c4c65e0fa0dfa12 onwards. Here's the code I used to reproduce this: ```python import fsspec import zarr fs...
> I'm a bit confused after reading this issue if improvements are still needed in both fsspec and zarr-python or just zarr-python (e.g., #489). Is anyone able to clarify whether...
Note that when this is implemented we should include `array_api_tests/test_array_object.py::test_getitem` in the array api tests agains as it was added to the skip list in #636.
> thanks for this report, I did a quick check and this bug was present _prior_ to the recent dtype changes, so that should help narrow the search down a...
Aha - which explains why it works on v2 - the default for `write_empty_chunks` is True (it's False in v3). On v2 the following fails too: ``` >>> print(zarr.array(np.array([0.0, -0.0]),...
> VCF? Coming to this a bit late, but because of the way VCF is stored (text, column fields interspersed in rows) we've found that it's best in terms of...
This reminds me of a memory cache hierarchy (level 1, level 2, level 3, main memory). It would be a legitimate optimization, but I'm not sure how significant the performance...
I'm not sure what's causing this, but in Cubed I've been using `RetryingFunctionExecutor` with ~1000 AWS lambda instances without any problems... I wonder if it's something to do with the...
Thanks @jsignell! Please go ahead - it would be great to have a hand. (I think there will be more issues like these to come.)
This would unfortunately be a breaking change. However, we could start by issuing a warning. For example: ```python >>> import dask.array as da >>> da.eye(3, chunks=2).shape (3, 3) >>> da.eye(3,...