| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: python313-zarr | Distribution: openSUSE Tumbleweed |
| Version: 3.1.6 | Vendor: openSUSE |
| Release: 1.1 | Build date: Tue Mar 31 21:40:50 2026 |
| Group: Unspecified | Build host: reproducible |
| Size: 3587117 | Source RPM: python-zarr-3.1.6-1.1.src.rpm |
| Packager: https://bugs.opensuse.org | |
| Url: https://github.com/zarr-developers/zarr-python | |
| Summary: An implementation of chunked, compressed, N-dimensional arrays for Python | |
An implementation of chunked, compressed, N-dimensional arrays for Python.
MIT
* Tue Mar 31 2026 Dirk Müller <dmueller@suse.com>
- update to 3.1.6:
* Bump the actions group with 2 updates
* fix: clearer description of `array.target_shard_size_bytes`
* chore/pin pytest asyncio
* fix tests for stand-alone example scripts
* fix: auto-chunking when auto-sharding 1MiB number
* Some minor linter \ type-hint fixes for my own sanity
* remove pytest pin
* use the result of the broadcasted array to check the contents
* docs: Correct grammar issues in a/an usage
* Bump the actions group across 1 directory with 5 updates
* ci: align pre-commit Python with tooling config
* chore: update pre-commit hooks
* adjust docstrings for `_iter_shard` methods / functions
* Add experimental section to the API docs
* Add instructions to contributing guide about executable docs
* Fix deprecation of setting shape on a numpy array in 2.5+
* Bump astral-sh/setup-uv from 7.1.6 to 7.2.0 in the actions
group
* Set copy=False in reshape operation
* Bump mimimum supported version of numpy
* add benchmarks using pytest-benchmark and codspeed
* Simplify testing of different numpy versions
* Clean up test extra dependencies
* docs: Correct some typos in documentation
* Bump actions/checkout from 5 to 6 in the actions group
* chore/use prek
* Add benchmarks for sharded + local store indexing
* Add methods for getting bytes + json to store abc
* Bump astral-sh/setup-uv from 5 to 7 in the actions group
* only run codspeed benchmarks on PRs labelled 'benchmark'
* Improve the usability of array runtime config
* Fix HTML syntax errors in README.md table
* Fix grammar, typos, and clarity issues in documentation
* fix: raise error when encountering nullable string dtype
* lift async array methods to stand-alone functions
* don't use depdendabot for the support/v2 branch
* Support with read only in wrappers
* perf:improve performance of morton order iter
* allow numpy ints in shapelike
* Fix obstore listdir method using _relativize_path
* perf:remove isinstance check
* Skip chunk coordinate enumeration in resize when array is
only growing
* perf:Add additional sharding benchmarks
* perf: Optimize Morton order with hypercube and vectorization
* fix/nested shard reads
* perf: Vectorize get_chunk_slice for faster sharded writes
* TEST: fix group selection for delete
* Add non-power-of-2 shapes for Morton coding to benchmarks
* perf: Fix near-miss penalty in _morton_order with hybrid
ceiling+argsort strategy
* chore/update hatch + use dependency groups
* perf: add sync methods to codecs
* fix: implement separate cache for byte-range-requests
* chore: update ruff and fix new ruff issues
* chore: update pre-commit hooks
* Use the prek GitHub Action
* Limit privilege escalation and token theft in workflows
* chore: no need to check reST files
* chore: Pre-commit hook for multi-character lstrip/rstrip
* docs: use dark text color on light mode search bar
* docs: add example of creating uncompressed arrays
* fix: BaseFloat._check_scalar rejects invalid string values
* docs: fix docstring for Array.cdata_shape
* fix: apply drop_axes squeeze in partial decode path for
sharding
* docs: add favicon
* fix: validate that dask-style chunks have regular shapes
* docs: add glossary
* docs: fix search color
* perf/store sync
* Remove `rich` as required for `tree()`
* chore: less frequent codspeed runs
* Add missing slash character to towncrier issue format
* doc: add ai use policy to contributing guide
* chore/towncrier header
* chore: Use OIDC for publishing
* chore/3.1.6 release notes
* Mon Dec 22 2025 Ben Greiner <code@bnavigator.de>
- Update to 3.1.5
* See the v3 migration guide for a listing of what's changed
since v2
https://zarr.readthedocs.io/en/stable/user-guide/v3_migration/
* For a more complete list of bugfixes see
https://zarr.readthedocs.io/en/stable/release-notes/
[#]# Features
* The Array class can now also be parametrized in the same manner
as the AsyncArray class, allowing Zarr format v2 and v3 Arrays
to be distinguished. New types have been added to zarr.types to
help with this. (#3304)
* Adds zarr.experimental.cache_store.CacheStore, a Store that
implements caching by combining two other Store instances. See
the docs page for more information about this feature. (#3366)
* Adds a zarr.experimental module for unstable user-facing
features. (#3490)
* Add a array.target_shard_size_bytes to zarr.config to allow
users to set a maximum number of bytes per-shard when
shards="auto" in, for example, zarr.create_array. (#3547)
* Make async_array on the zarr.Array class public (_async_array
will remain untouched, but its stability is not guaranteed).
(#3556)
* Add a command-line interface to migrate v2 Zarr metadata to v3.
Corresponding functions are also provided under zarr.metadata.
(#1798)
* Add obstore implementation of delete_dir. (#3310)
* Adds a registry for chunk key encodings for extensibility. This
allows users to implement a custom ChunkKeyEncoding, which can
be registered via register_chunk_key_encoding or as an entry
point under zarr.chunk_key_encoding. (#3436)
* Trying to open a group at a path where an array already exists
now raises a helpful error. (#3444)
* Added support for async vectorized and orthogonal indexing.
(#3083)
* Make config param optional in init_array (#3391)
* Add lightweight implementations of .getsize() and
.getsize_prefix() for ObjectStore. (#3227)
* Ensure that invocations of create_array use consistent keyword
arguments, with consistent defaults.
* Added public API for Buffer ABCs and implementations.
* Adds zarr-specific data type classes.
* Added NDBuffer.empty method for faster ndbuffer initialization.
(#3191)
* Add an alternate from_array_metadata_and_store constructor to
CodecPipeline. (#3233)
* Add zarr.storage.FsspecStore.from_mapper() so that zarr.open()
supports stores of type fsspec.mapping.FSMap. (#2774)
* Implemented move for LocalStore and ZipStore. This allows users
to move the store to a different root path. (#3021)
* Added zarr.errors.GroupNotFoundError, which is raised when
attempting to open a group that does not exist. (#3066)
* Adds fill_value to the list of attributes displayed in the
output of the AsyncArray.info() method. (#3081)
* Use numpy.zeros instead of np.full for a performance speedup
when creating a zarr.core.buffer.NDBuffer with fill_value=0.
(#3082)
* Port more stateful testing actions from Icechunk. (#3130)
* Adds a with_read_only convenience method to the Store abstract
base class (raises NotImplementedError) and implementations to
the MemoryStore, ObjectStore, LocalStore, and FsspecStore
classes. (#3138)
* Added a print_debug_info function for bug reports. (#2913)
* Add experimental ObjectStore storage class based on obstore.
(#1661)
* Add zarr.from_array using concurrent streaming of source data
(#2622)
* Adds functions for concurrently creating multiple arrays and
groups. (#2665)
* Improves performance of FsspecStore.delete_dir for remote
filesystems supporting concurrent/batched deletes, e.g., s3fs.
(#2661)
* Added zarr.config.enable_gpu to update Zarr's configuration to
use GPUs. (#2751)
* Avoid reading chunks during writes where possible. #757 (#2784)
* LocalStore learned to delete_dir. This makes array and group
deletes more efficient. (#2804)
* Add zarr.testing.strategies.array_metadata to generate
ArrayV2Metadata and ArrayV3Metadata instances. (#2813)
* Add arbitrary shards to Hypothesis strategy for generating
arrays. (#2822)
* Test getsize() and getsize_prefix() in StoreTests. (#2693)
* Test that a ValueError is raised for invalid byte range syntax
in StoreTests. (#2693)
* Separate instantiating and opening a store in StoreTests.
(#2693)
* Add a test for using Stores as a context managers in
StoreTests. (#2693)
* Implemented LogingStore.open(). (#2693)
* LoggingStore is now a generic class. (#2693)
* Change StoreTest's test_store_repr, test_store_supports_writes,
test_store_supports_partial_writes, and
test_store_supports_listing to to be implemented using
@abstractmethod, rather raising NotImplementedError. (#2693)
* Test the error raised for invalid buffer arguments in
StoreTests. (#2693)
* Test that data can be written to a store that's not yet open
using the store.set method in StoreTests. (#2693)
* Adds a new function init_array for initializing an array in
storage, and refactors create_array to use init_array.
create_array takes two new parameters: data, an optional
array-like object, and write_data, a bool which defaults to
True. If data is given to create_array, then the dtype and
shape attributes of data are used to define the corresponding
attributes of the resulting Zarr array. Additionally, if data
given and write_data is True, then the values in data will be
written to the newly created array. (#2761)
* Implement zarr.from_array using concurrent streaming (#2622).
[#]# Deprecations and Removals
* Removes default chunk encoding settings (filters, serializer,
compressors) from the global configuration object.
* Removes support for passing keyword-only arguments positionally
to the following functions and methods: save_array, open,
group, open_group, create, get_basic_selection,
set_basic_selection, get_orthogonal_selection,
set_orthogonal_selection, get_mask_selection,
set_mask_selection, get_coordinate_selection,
set_coordinate_selection, get_block_selection,
set_block_selection, Group.create_array, Group.empty,
Group.zeroes, Group.ones, Group.empty_like, Group.full,
Group.zeros_like, Group.ones_like, Group.full_like, Group.array
- Remove zarr-numcodecs-zstd-test.patch
* Thu Mar 06 2025 Ben Greiner <code@bnavigator.de>
- Update to 2.18.4
* Add Python 3.13, drop Python 3.10 by @dstansby in #2344
* Exclude bad version of numcodecs & fix bsddb3 doctests by
@dstansby in #2544
- We do not dare to upgrade to Zarr 3 yet
* https://zarr.dev/blog/zarr-python-3-release/
* Wed Sep 25 2024 Ben Greiner <code@bnavigator.de>
- Update to 2.18.3
* Update TEAM.md by @jhamman in #2071
* [v2] Fix doctests with numpy 2.0 by @dstansby in #2073
* Fix version number in built docs by @dstansby in #2044
* Fix orthogonal indexing with a scalar by @dcherian in #1947
* [v2] Drop support for Python 3.9 by @dstansby in #2074
* Fix Array.array for numpy 2.1 by @dstansby in #2106
* Bump test version of numcodecs by @dstansby in #2114
* fix: numpy 1.24 compat for Array.array by @jhamman in #2123
* Deprecate N5Store by @jhamman in #2103
* Run tests on numpy 1.23 by @dstansby in #2124
* chore: bump minimum numpy version to 1.24 by @jhamman in #2127
- Revert the numpy1 restriction
- Add zarr-numcodecs-zstd-test.patch:
* Allow older numcodecs < 0.13 in zstd tests
* Overrides gh#zarr-developers/zarr-python#2114
* Mon Sep 23 2024 ecsos <ecsos@opensuse.org>
- Fix build error and use numpy1
* Sat Jun 29 2024 Dirk Müller <dmueller@suse.com>
- update to 2.18.2:
* Add Zstd codec to old V3 code path.
* Fix a regression when getting or setting a single value from
arrays with size-1 chunks.
* Wed May 08 2024 Dirk Müller <dmueller@suse.com>
- update to 2.18.0:
* Performance improvement for reading and writing chunks if any
of the dimensions is size 1.
* Enable ruff/bugbear rules (B) and fix issues.
* Minor updates to use np.inf instead of np.PINF / np.NINF in
preparation for NumPy 2.0.0 release.
* Deprecate experimental v3 support by issuing a FutureWarning.
Also updated docs to warn about using the experimental v3
version.
* Deprecate the following stores:
:class:`zarr.storage.DBMStore`,
:class:`zarr.storage.LMDBStore`,
:class:`zarr.storage.SQLiteStore`,
:class:`zarr.storage.MongoDBStore`,
:class:`zarr.storage.RedisStore`, and
:class:`zarr.storage.ABSStore`. These stores are slated to be
removed from Zarr-Python in version 3.0.
* Sat Apr 20 2024 Dirk Müller <dmueller@suse.com>
- update to 2.17.2:
* [v3] Dramatically reduce number of __contains__ requests in
favor of optimistically calling __getitem__ and handling any
error that may arise.
* [v3] Reuse the downloaded array metadata when creating an
Array.
* Optimize Array.info so that it calls getsize only once.
* Override IPython _repr_*_ methods to avoid expensive lookups
against object stores.
* FSStore now raises rather than return bad data.
* Add CI test environment for Python 3.12
* Bump minimum supported NumPy version to 1.23 (per spec 0000)
* Sat Mar 16 2024 Ben Greiner <code@bnavigator.de>
- Update to 2.17.1
* Change occurrences of % and format() to f-strings. By Dimitri
Papadopoulos Orfanos #1423.
* Proper argument for numpy.reshape. By Dimitri Papadopoulos
Orfanos #1425.
* Add typing to dimension separator arguments. By David Stansby
[#1620].
- Release 2.17.0
* Added type hints to zarr.creation.create(). By David Stansby
[#1536].
* Pyodide support: Don’t require fasteners on Emscripten. By Hood
Chatham #1663.
* Fri Jan 19 2024 Daniel Garcia <daniel.garcia@suse.com>
- skip broken tests in s390x, gh#zarr-developers/zarr-python#1375
bsc#1218611
* Wed Dec 27 2023 Dirk Müller <dmueller@suse.com>
- update to 2.16.1:
* Require ``setuptools_scm`` version ``1.5.4``\+
* Add ``docs`` requirements to ``pyproject.toml``
* Fixed caching issue in ``LRUStoreCache``.
* Tue Aug 01 2023 Markéta Machová <mmachova@suse.com>
- update to version 2.16
* Migrate to pyproject.toml and remove redundant infrastructure.
* Require setuptools 64.0.0+
* Bump to NumPy 1.20+ in environment.yml.
* More maintenance changes, special thanks to Outreachy participants
for contributing to most of the maintenance PRs.
* Improve Zarr V3 support, adding partial store read/write and
storage transformers.
* N5 nows supports Blosc. Remove warnings emitted when using N5Store
or N5FSStore with a blosc-compressed array.
* Implement more extensive fallback of getitem/setitem for
orthogonal indexing.
* Getitems supports meta_array.
* Allow for partial codec specification in V3 array metadata.
* Implemented blockwise (chunk blocks) indexing to zarr.Array.
* Thu Jul 27 2023 Dirk Müller <dmueller@suse.com>
- set python311 context for SLE15
/usr/bin/zarr /usr/bin/zarr-3.13 /usr/lib/python3.13/site-packages/zarr /usr/lib/python3.13/site-packages/zarr-3.1.6.dist-info /usr/lib/python3.13/site-packages/zarr-3.1.6.dist-info/INSTALLER /usr/lib/python3.13/site-packages/zarr-3.1.6.dist-info/METADATA /usr/lib/python3.13/site-packages/zarr-3.1.6.dist-info/RECORD /usr/lib/python3.13/site-packages/zarr-3.1.6.dist-info/REQUESTED /usr/lib/python3.13/site-packages/zarr-3.1.6.dist-info/WHEEL /usr/lib/python3.13/site-packages/zarr-3.1.6.dist-info/entry_points.txt /usr/lib/python3.13/site-packages/zarr-3.1.6.dist-info/licenses /usr/lib/python3.13/site-packages/zarr-3.1.6.dist-info/licenses/LICENSE.txt /usr/lib/python3.13/site-packages/zarr/__init__.py /usr/lib/python3.13/site-packages/zarr/__pycache__ /usr/lib/python3.13/site-packages/zarr/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/_compat.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/_compat.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/_version.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/_version.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/convenience.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/convenience.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/creation.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/creation.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/dtype.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/dtype.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/errors.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/errors.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/registry.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/registry.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/types.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/__pycache__/types.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/_cli /usr/lib/python3.13/site-packages/zarr/_cli/__init__.py /usr/lib/python3.13/site-packages/zarr/_cli/__pycache__ /usr/lib/python3.13/site-packages/zarr/_cli/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/_cli/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/_cli/__pycache__/cli.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/_cli/__pycache__/cli.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/_cli/cli.py /usr/lib/python3.13/site-packages/zarr/_compat.py /usr/lib/python3.13/site-packages/zarr/_version.py /usr/lib/python3.13/site-packages/zarr/abc /usr/lib/python3.13/site-packages/zarr/abc/__init__.py /usr/lib/python3.13/site-packages/zarr/abc/__pycache__ /usr/lib/python3.13/site-packages/zarr/abc/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/abc/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/abc/__pycache__/buffer.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/abc/__pycache__/buffer.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/abc/__pycache__/codec.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/abc/__pycache__/codec.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/abc/__pycache__/metadata.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/abc/__pycache__/metadata.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/abc/__pycache__/numcodec.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/abc/__pycache__/numcodec.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/abc/__pycache__/store.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/abc/__pycache__/store.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/abc/buffer.py /usr/lib/python3.13/site-packages/zarr/abc/codec.py /usr/lib/python3.13/site-packages/zarr/abc/metadata.py /usr/lib/python3.13/site-packages/zarr/abc/numcodec.py /usr/lib/python3.13/site-packages/zarr/abc/store.py /usr/lib/python3.13/site-packages/zarr/api /usr/lib/python3.13/site-packages/zarr/api/__init__.py /usr/lib/python3.13/site-packages/zarr/api/__pycache__ /usr/lib/python3.13/site-packages/zarr/api/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/api/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/api/__pycache__/asynchronous.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/api/__pycache__/asynchronous.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/api/__pycache__/synchronous.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/api/__pycache__/synchronous.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/api/asynchronous.py /usr/lib/python3.13/site-packages/zarr/api/synchronous.py /usr/lib/python3.13/site-packages/zarr/buffer /usr/lib/python3.13/site-packages/zarr/buffer/__init__.py /usr/lib/python3.13/site-packages/zarr/buffer/__pycache__ /usr/lib/python3.13/site-packages/zarr/buffer/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/buffer/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/buffer/__pycache__/cpu.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/buffer/__pycache__/cpu.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/buffer/__pycache__/gpu.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/buffer/__pycache__/gpu.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/buffer/cpu.py /usr/lib/python3.13/site-packages/zarr/buffer/gpu.py /usr/lib/python3.13/site-packages/zarr/codecs /usr/lib/python3.13/site-packages/zarr/codecs/__init__.py /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__ /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/_v2.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/_v2.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/blosc.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/blosc.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/bytes.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/bytes.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/crc32c_.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/crc32c_.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/gzip.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/gzip.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/sharding.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/sharding.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/transpose.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/transpose.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/vlen_utf8.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/vlen_utf8.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/zstd.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/codecs/__pycache__/zstd.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/codecs/_v2.py /usr/lib/python3.13/site-packages/zarr/codecs/blosc.py /usr/lib/python3.13/site-packages/zarr/codecs/bytes.py /usr/lib/python3.13/site-packages/zarr/codecs/crc32c_.py /usr/lib/python3.13/site-packages/zarr/codecs/gzip.py /usr/lib/python3.13/site-packages/zarr/codecs/numcodecs /usr/lib/python3.13/site-packages/zarr/codecs/numcodecs/__init__.py /usr/lib/python3.13/site-packages/zarr/codecs/numcodecs/__pycache__ /usr/lib/python3.13/site-packages/zarr/codecs/numcodecs/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/codecs/numcodecs/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/codecs/numcodecs/__pycache__/_codecs.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/codecs/numcodecs/__pycache__/_codecs.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/codecs/numcodecs/_codecs.py /usr/lib/python3.13/site-packages/zarr/codecs/sharding.py /usr/lib/python3.13/site-packages/zarr/codecs/transpose.py /usr/lib/python3.13/site-packages/zarr/codecs/vlen_utf8.py /usr/lib/python3.13/site-packages/zarr/codecs/zstd.py /usr/lib/python3.13/site-packages/zarr/convenience.py /usr/lib/python3.13/site-packages/zarr/core /usr/lib/python3.13/site-packages/zarr/core/__init__.py /usr/lib/python3.13/site-packages/zarr/core/__pycache__ /usr/lib/python3.13/site-packages/zarr/core/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/_info.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/_info.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/_tree.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/_tree.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/array.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/array.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/array_spec.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/array_spec.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/attributes.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/attributes.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/chunk_grids.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/chunk_grids.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/chunk_key_encodings.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/chunk_key_encodings.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/codec_pipeline.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/codec_pipeline.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/common.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/common.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/config.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/config.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/group.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/group.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/indexing.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/indexing.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/sync.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/sync.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/sync_group.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/__pycache__/sync_group.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/_info.py /usr/lib/python3.13/site-packages/zarr/core/_tree.py /usr/lib/python3.13/site-packages/zarr/core/array.py /usr/lib/python3.13/site-packages/zarr/core/array_spec.py /usr/lib/python3.13/site-packages/zarr/core/attributes.py /usr/lib/python3.13/site-packages/zarr/core/buffer /usr/lib/python3.13/site-packages/zarr/core/buffer/__init__.py /usr/lib/python3.13/site-packages/zarr/core/buffer/__pycache__ /usr/lib/python3.13/site-packages/zarr/core/buffer/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/buffer/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/buffer/__pycache__/core.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/buffer/__pycache__/core.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/buffer/__pycache__/cpu.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/buffer/__pycache__/cpu.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/buffer/__pycache__/gpu.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/buffer/__pycache__/gpu.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/buffer/core.py /usr/lib/python3.13/site-packages/zarr/core/buffer/cpu.py /usr/lib/python3.13/site-packages/zarr/core/buffer/gpu.py /usr/lib/python3.13/site-packages/zarr/core/chunk_grids.py /usr/lib/python3.13/site-packages/zarr/core/chunk_key_encodings.py /usr/lib/python3.13/site-packages/zarr/core/codec_pipeline.py /usr/lib/python3.13/site-packages/zarr/core/common.py /usr/lib/python3.13/site-packages/zarr/core/config.py /usr/lib/python3.13/site-packages/zarr/core/dtype /usr/lib/python3.13/site-packages/zarr/core/dtype/__init__.py /usr/lib/python3.13/site-packages/zarr/core/dtype/__pycache__ /usr/lib/python3.13/site-packages/zarr/core/dtype/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/__pycache__/common.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/__pycache__/common.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/__pycache__/registry.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/__pycache__/registry.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/__pycache__/wrapper.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/__pycache__/wrapper.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/common.py /usr/lib/python3.13/site-packages/zarr/core/dtype/npy /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__init__.py /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__ /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/bool.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/bool.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/bytes.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/bytes.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/common.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/common.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/complex.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/complex.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/float.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/float.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/int.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/int.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/string.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/string.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/structured.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/structured.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/time.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/__pycache__/time.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/bool.py /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/bytes.py /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/common.py /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/complex.py /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/float.py /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/int.py /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/string.py /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/structured.py /usr/lib/python3.13/site-packages/zarr/core/dtype/npy/time.py /usr/lib/python3.13/site-packages/zarr/core/dtype/registry.py /usr/lib/python3.13/site-packages/zarr/core/dtype/wrapper.py /usr/lib/python3.13/site-packages/zarr/core/group.py /usr/lib/python3.13/site-packages/zarr/core/indexing.py /usr/lib/python3.13/site-packages/zarr/core/metadata /usr/lib/python3.13/site-packages/zarr/core/metadata/__init__.py /usr/lib/python3.13/site-packages/zarr/core/metadata/__pycache__ /usr/lib/python3.13/site-packages/zarr/core/metadata/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/metadata/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/metadata/__pycache__/common.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/metadata/__pycache__/common.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/metadata/__pycache__/io.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/metadata/__pycache__/io.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/metadata/__pycache__/v2.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/metadata/__pycache__/v2.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/metadata/__pycache__/v3.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/core/metadata/__pycache__/v3.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/core/metadata/common.py /usr/lib/python3.13/site-packages/zarr/core/metadata/io.py /usr/lib/python3.13/site-packages/zarr/core/metadata/v2.py /usr/lib/python3.13/site-packages/zarr/core/metadata/v3.py /usr/lib/python3.13/site-packages/zarr/core/sync.py /usr/lib/python3.13/site-packages/zarr/core/sync_group.py /usr/lib/python3.13/site-packages/zarr/creation.py /usr/lib/python3.13/site-packages/zarr/dtype.py /usr/lib/python3.13/site-packages/zarr/errors.py /usr/lib/python3.13/site-packages/zarr/experimental /usr/lib/python3.13/site-packages/zarr/experimental/__init__.py /usr/lib/python3.13/site-packages/zarr/experimental/__pycache__ /usr/lib/python3.13/site-packages/zarr/experimental/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/experimental/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/experimental/__pycache__/cache_store.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/experimental/__pycache__/cache_store.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/experimental/cache_store.py /usr/lib/python3.13/site-packages/zarr/metadata /usr/lib/python3.13/site-packages/zarr/metadata/__init__.py /usr/lib/python3.13/site-packages/zarr/metadata/__pycache__ /usr/lib/python3.13/site-packages/zarr/metadata/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/metadata/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/metadata/__pycache__/migrate_v3.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/metadata/__pycache__/migrate_v3.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/metadata/migrate_v3.py /usr/lib/python3.13/site-packages/zarr/py.typed /usr/lib/python3.13/site-packages/zarr/registry.py /usr/lib/python3.13/site-packages/zarr/storage /usr/lib/python3.13/site-packages/zarr/storage/__init__.py /usr/lib/python3.13/site-packages/zarr/storage/__pycache__ /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_common.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_common.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_fsspec.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_fsspec.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_local.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_local.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_logging.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_logging.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_memory.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_memory.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_obstore.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_obstore.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_utils.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_wrapper.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_wrapper.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_zip.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/storage/__pycache__/_zip.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/storage/_common.py /usr/lib/python3.13/site-packages/zarr/storage/_fsspec.py /usr/lib/python3.13/site-packages/zarr/storage/_local.py /usr/lib/python3.13/site-packages/zarr/storage/_logging.py /usr/lib/python3.13/site-packages/zarr/storage/_memory.py /usr/lib/python3.13/site-packages/zarr/storage/_obstore.py /usr/lib/python3.13/site-packages/zarr/storage/_utils.py /usr/lib/python3.13/site-packages/zarr/storage/_wrapper.py /usr/lib/python3.13/site-packages/zarr/storage/_zip.py /usr/lib/python3.13/site-packages/zarr/testing /usr/lib/python3.13/site-packages/zarr/testing/__init__.py /usr/lib/python3.13/site-packages/zarr/testing/__pycache__ /usr/lib/python3.13/site-packages/zarr/testing/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/testing/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/testing/__pycache__/buffer.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/testing/__pycache__/buffer.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/testing/__pycache__/conftest.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/testing/__pycache__/conftest.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/testing/__pycache__/stateful.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/testing/__pycache__/stateful.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/testing/__pycache__/store.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/testing/__pycache__/store.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/testing/__pycache__/strategies.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/testing/__pycache__/strategies.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/testing/__pycache__/utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/zarr/testing/__pycache__/utils.cpython-313.pyc /usr/lib/python3.13/site-packages/zarr/testing/buffer.py /usr/lib/python3.13/site-packages/zarr/testing/conftest.py /usr/lib/python3.13/site-packages/zarr/testing/stateful.py /usr/lib/python3.13/site-packages/zarr/testing/store.py /usr/lib/python3.13/site-packages/zarr/testing/strategies.py /usr/lib/python3.13/site-packages/zarr/testing/utils.py /usr/lib/python3.13/site-packages/zarr/types.py /usr/share/doc/packages/python313-zarr /usr/share/doc/packages/python313-zarr/README.md /usr/share/libalternatives/zarr /usr/share/libalternatives/zarr/1313.conf /usr/share/licenses/python313-zarr /usr/share/licenses/python313-zarr/LICENSE.txt
Generated by rpm2html 1.8.1
Fabrice Bellet, Sun Apr 5 22:30:39 2026