rustytree-xarray 0.2.0__tar.gz → 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/.github/workflows/ci.yml +1 -1
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/CHANGELOG.md +10 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/Cargo.lock +13 -13
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/Cargo.toml +2 -2
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/PKG-INFO +2 -2
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/pyproject.toml +2 -2
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/python/rustytree/__init__.py +1 -1
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/tests/test_phase1_scaffold.py +1 -1
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/.github/workflows/release.yml +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/.gitignore +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/LICENSE +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/README.md +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/assets/logo-banner-dark.png +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/assets/logo-banner-dark.svg +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/assets/logo-banner-light.png +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/assets/logo-banner-light.svg +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/assets/logo.png +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/docs/architecture.md +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/docs/contributing.md +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/docs/release-process.md +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/docs/usage.md +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/notebooks/klot_demo.ipynb +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/python/rustytree/_array.py +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/python/rustytree/backend.py +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/src/array.rs +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/src/dtype_dispatch.rs +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/src/error.rs +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/src/glob.rs +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/src/icechunk_store.rs +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/src/lib.rs +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/src/node.rs +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/src/runtime.rs +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/src/store.rs +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/src/url.rs +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/src/walk.rs +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/tests/conftest.py +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/tests/test_backend_entrypoint.py +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/tests/test_chunks.py +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/tests/test_eager_fetch.py +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/tests/test_icechunk.py +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/tests/test_lazy.py +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/tests/test_to_rust_source.py +0 -0
- {rustytree_xarray-0.2.0 → rustytree_xarray-0.2.1}/tests/test_walk.py +0 -0
|
@@ -60,7 +60,7 @@ jobs:
|
|
|
60
60
|
# which would re-trigger a full cdylib rebuild on top of maturin develop
|
|
61
61
|
# below (we'd build the wheel twice — saves ~80s per matrix cell).
|
|
62
62
|
# Keep this list in sync with the `dev` extra in pyproject.toml.
|
|
63
|
-
run: uv pip install --python .venv/bin/python pytest pytest-cov 'zarr>=3.0' 'icechunk>=2.0' ruff
|
|
63
|
+
run: uv pip install --python .venv/bin/python pytest pytest-cov 'zarr>=3.0' 'icechunk>=2.0.5' ruff
|
|
64
64
|
- name: Build extension (maturin develop)
|
|
65
65
|
run: .venv/bin/maturin develop
|
|
66
66
|
- name: pytest
|
|
@@ -11,6 +11,16 @@ release, that section is renamed to `[x.y.z] - YYYY-MM-DD` and a fresh
|
|
|
11
11
|
|
|
12
12
|
## [Unreleased]
|
|
13
13
|
|
|
14
|
+
## [0.2.1] - 2026-05-23
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- Compatibility with icechunk 2.0.5: pin Rust-side `icechunk` crate to
|
|
19
|
+
`=2.0.5` and bump Python-side floor to `>=2.0.5`. Fixes #37.
|
|
20
|
+
The `Session::from_bytes` msgpack format changed between 2.0.4 and
|
|
21
|
+
2.0.5; the 0.2.0 wheel (built against 2.0.4) could not deserialise
|
|
22
|
+
session bytes produced by icechunk-python 2.0.5.
|
|
23
|
+
|
|
14
24
|
## [0.2.0] - 2026-05-08
|
|
15
25
|
|
|
16
26
|
### Changed
|
|
@@ -1846,9 +1846,9 @@ dependencies = [
|
|
|
1846
1846
|
|
|
1847
1847
|
[[package]]
|
|
1848
1848
|
name = "icechunk"
|
|
1849
|
-
version = "2.0.
|
|
1849
|
+
version = "2.0.5"
|
|
1850
1850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
-
checksum = "
|
|
1851
|
+
checksum = "7af416f5b28f3bea35f2d48dd018b7cba711c35a1c965311782222ac337bbccd"
|
|
1852
1852
|
dependencies = [
|
|
1853
1853
|
"async-compression",
|
|
1854
1854
|
"async-recursion",
|
|
@@ -1887,9 +1887,9 @@ dependencies = [
|
|
|
1887
1887
|
|
|
1888
1888
|
[[package]]
|
|
1889
1889
|
name = "icechunk-arrow-object-store"
|
|
1890
|
-
version = "2.0.
|
|
1890
|
+
version = "2.0.5"
|
|
1891
1891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1892
|
-
checksum = "
|
|
1892
|
+
checksum = "8e7610964a5f7859731c95eaec642fcf839e5467137da10d9a2a477c47c1ca2b"
|
|
1893
1893
|
dependencies = [
|
|
1894
1894
|
"async-trait",
|
|
1895
1895
|
"bytes",
|
|
@@ -1909,9 +1909,9 @@ dependencies = [
|
|
|
1909
1909
|
|
|
1910
1910
|
[[package]]
|
|
1911
1911
|
name = "icechunk-format"
|
|
1912
|
-
version = "2.0.
|
|
1912
|
+
version = "2.0.5"
|
|
1913
1913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1914
|
-
checksum = "
|
|
1914
|
+
checksum = "258c49d6a1b89fab075fa8b9c31829861ec52f92e5984ab924f4ad834ede13a6"
|
|
1915
1915
|
dependencies = [
|
|
1916
1916
|
"base32",
|
|
1917
1917
|
"bytes",
|
|
@@ -1935,9 +1935,9 @@ dependencies = [
|
|
|
1935
1935
|
|
|
1936
1936
|
[[package]]
|
|
1937
1937
|
name = "icechunk-s3"
|
|
1938
|
-
version = "2.0.
|
|
1938
|
+
version = "2.0.5"
|
|
1939
1939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1940
|
-
checksum = "
|
|
1940
|
+
checksum = "79e08bc924fcc375bf6a2214cc897c09d46b242821999f6c6e3eb87adb0fb0a4"
|
|
1941
1941
|
dependencies = [
|
|
1942
1942
|
"async-trait",
|
|
1943
1943
|
"aws-config",
|
|
@@ -1960,9 +1960,9 @@ dependencies = [
|
|
|
1960
1960
|
|
|
1961
1961
|
[[package]]
|
|
1962
1962
|
name = "icechunk-storage"
|
|
1963
|
-
version = "2.0.
|
|
1963
|
+
version = "2.0.5"
|
|
1964
1964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1965
|
-
checksum = "
|
|
1965
|
+
checksum = "d8341b2ce1729d586b9460af93c5c0549d2937df48ad7407101498f56ce99d75"
|
|
1966
1966
|
dependencies = [
|
|
1967
1967
|
"async-trait",
|
|
1968
1968
|
"bytes",
|
|
@@ -1981,9 +1981,9 @@ dependencies = [
|
|
|
1981
1981
|
|
|
1982
1982
|
[[package]]
|
|
1983
1983
|
name = "icechunk-types"
|
|
1984
|
-
version = "2.0.
|
|
1984
|
+
version = "2.0.5"
|
|
1985
1985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1986
|
-
checksum = "
|
|
1986
|
+
checksum = "3ae8062e3d19227364ba07bd13f2b3bfbb33beaf46883b72b26f36d0ae359449"
|
|
1987
1987
|
dependencies = [
|
|
1988
1988
|
"serde",
|
|
1989
1989
|
"serde_with",
|
|
@@ -3346,7 +3346,7 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
|
3346
3346
|
|
|
3347
3347
|
[[package]]
|
|
3348
3348
|
name = "rustytree"
|
|
3349
|
-
version = "0.2.
|
|
3349
|
+
version = "0.2.1"
|
|
3350
3350
|
dependencies = [
|
|
3351
3351
|
"futures",
|
|
3352
3352
|
"icechunk",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "rustytree"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.1"
|
|
4
4
|
edition = "2024"
|
|
5
5
|
rust-version = "1.91.1"
|
|
6
6
|
license = "Apache-2.0"
|
|
@@ -45,7 +45,7 @@ serde_json = "1"
|
|
|
45
45
|
# icechunk `Session` as `AsyncReadableListableStorageTraits` so the walk
|
|
46
46
|
# code stays polymorphic: the same `open_single` runs against either an
|
|
47
47
|
# icechunk session or a vanilla object_store-backed store.
|
|
48
|
-
icechunk = "2"
|
|
48
|
+
icechunk = "=2.0.5"
|
|
49
49
|
zarrs_icechunk = "0.5"
|
|
50
50
|
|
|
51
51
|
[lints.clippy]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rustytree-xarray
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Classifier: Development Status :: 3 - Alpha
|
|
5
5
|
Classifier: Intended Audience :: Science/Research
|
|
6
6
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
@@ -14,7 +14,7 @@ Requires-Dist: xarray>=2024.10
|
|
|
14
14
|
Requires-Dist: pytest>=7.0 ; extra == 'dev'
|
|
15
15
|
Requires-Dist: pytest-cov>=4.0 ; extra == 'dev'
|
|
16
16
|
Requires-Dist: zarr>=3.0 ; extra == 'dev'
|
|
17
|
-
Requires-Dist: icechunk>=2.0 ; extra == 'dev'
|
|
17
|
+
Requires-Dist: icechunk>=2.0.5 ; extra == 'dev'
|
|
18
18
|
Requires-Dist: ruff>=0.5.0 ; extra == 'dev'
|
|
19
19
|
Provides-Extra: dev
|
|
20
20
|
License-File: LICENSE
|
|
@@ -10,7 +10,7 @@ build-backend = "maturin"
|
|
|
10
10
|
# `-`/`_`/case so they collapse). Users `pip install rustytree-xarray`,
|
|
11
11
|
# then `import rustytree`.
|
|
12
12
|
name = "rustytree-xarray"
|
|
13
|
-
version = "0.2.
|
|
13
|
+
version = "0.2.1"
|
|
14
14
|
description = "Rust-backed xarray DataTree backend for fast Zarr access from object storage"
|
|
15
15
|
readme = "README.md"
|
|
16
16
|
requires-python = ">=3.12"
|
|
@@ -40,7 +40,7 @@ dev = [
|
|
|
40
40
|
"pytest>=7.0",
|
|
41
41
|
"pytest-cov>=4.0",
|
|
42
42
|
"zarr>=3.0",
|
|
43
|
-
"icechunk>=2.0",
|
|
43
|
+
"icechunk>=2.0.5",
|
|
44
44
|
"ruff>=0.5.0",
|
|
45
45
|
]
|
|
46
46
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|