zarrs 0.1.0__tar.gz → 0.1.2__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.
- {zarrs-0.1.0 → zarrs-0.1.2}/.github/workflows/cd.yml +9 -2
- {zarrs-0.1.0 → zarrs-0.1.2}/.gitignore +4 -0
- zarrs-0.1.2/Cargo.lock +2953 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/Cargo.toml +9 -5
- {zarrs-0.1.0 → zarrs-0.1.2}/PKG-INFO +28 -15
- {zarrs-0.1.0 → zarrs-0.1.2}/README.md +26 -13
- {zarrs-0.1.0 → zarrs-0.1.2}/docs/index.md +0 -1
- {zarrs-0.1.0 → zarrs-0.1.2}/pyproject.toml +1 -1
- zarrs-0.1.2/python/zarrs/_internal.pyi +53 -0
- zarrs-0.1.2/python/zarrs/pipeline.py +241 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/python/zarrs/utils.py +33 -28
- zarrs-0.1.2/src/chunk_item.rs +195 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/src/lib.rs +77 -184
- zarrs-0.1.2/src/metadata_v2.rs +54 -0
- zarrs-0.1.2/src/runtime.rs +18 -0
- zarrs-0.1.2/src/store/filesystem.rs +31 -0
- zarrs-0.1.2/src/store/http.rs +46 -0
- zarrs-0.1.2/src/store/manager.rs +61 -0
- zarrs-0.1.2/src/store.rs +85 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/src/tests.rs +10 -6
- zarrs-0.1.2/tests/conftest.py +124 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/tests/test_blosc.py +1 -1
- {zarrs-0.1.0 → zarrs-0.1.2}/tests/test_endian.py +1 -1
- {zarrs-0.1.0 → zarrs-0.1.2}/tests/test_gzip.py +1 -1
- {zarrs-0.1.0 → zarrs-0.1.2}/tests/test_pipeline.py +67 -40
- {zarrs-0.1.0 → zarrs-0.1.2}/tests/test_sharding.py +1 -1
- {zarrs-0.1.0 → zarrs-0.1.2}/tests/test_transpose.py +1 -1
- zarrs-0.1.2/tests/test_v2.py +346 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/tests/test_vlen.py +1 -1
- zarrs-0.1.2/tests/test_zarrs_http.py +38 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/tests/test_zstd.py +1 -1
- zarrs-0.1.0/Cargo.lock +0 -1436
- zarrs-0.1.0/docs/api.md +0 -13
- zarrs-0.1.0/python/zarrs/_internal.pyi +0 -47
- zarrs-0.1.0/python/zarrs/pipeline.py +0 -155
- zarrs-0.1.0/src/chunk_item.rs +0 -185
- zarrs-0.1.0/src/codec_pipeline_store_filesystem.rs +0 -47
- zarrs-0.1.0/tests/conftest.py +0 -155
- {zarrs-0.1.0 → zarrs-0.1.2}/.github/workflows/ci.yml +0 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/.github/workflows/version-cmp.py +0 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/.pre-commit-config.yaml +0 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/.readthedocs.yml +0 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/LICENSE +0 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/docs/Makefile +0 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/docs/conf.py +0 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/docs/contributing.md +0 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/docs/make.bat +0 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/hatch.toml +0 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/python/zarrs/__init__.py +0 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/python/zarrs/py.typed +0 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/src/bin/stub_gen.rs +0 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/src/concurrency.rs +0 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/src/utils.rs +0 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/tests/test_codecs.py +0 -0
- {zarrs-0.1.0 → zarrs-0.1.2}/tests/test_version.py +0 -0
|
@@ -16,7 +16,6 @@ jobs:
|
|
|
16
16
|
name: build on ${{ matrix.os }} (${{ matrix.target }}${{ matrix.os == 'linux' && format(' - {0}', matrix.manylinux == 'auto' && 'manylinux' || matrix.manylinux) || '' }})
|
|
17
17
|
# only run on push to tags, main branch, or explicit full build
|
|
18
18
|
# keep condition in sync with `build-sdist` job
|
|
19
|
-
if: github.ref_type == 'tag' || github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'Full Build')
|
|
20
19
|
strategy:
|
|
21
20
|
fail-fast: false
|
|
22
21
|
matrix:
|
|
@@ -35,6 +34,10 @@ jobs:
|
|
|
35
34
|
- { os: linux, manylinux: musllinux_1_2, target: armv7 }
|
|
36
35
|
# windows
|
|
37
36
|
- { os: windows, target: i686, python-architecture: x86 }
|
|
37
|
+
exclude:
|
|
38
|
+
# https://github.com/rust-cross/cargo-xwin/issues/76
|
|
39
|
+
- os: windows
|
|
40
|
+
target: aarch64
|
|
38
41
|
runs-on: ${{ (matrix.os == 'linux' && 'ubuntu') || matrix.os }}-latest
|
|
39
42
|
steps:
|
|
40
43
|
- uses: actions/checkout@v4
|
|
@@ -50,6 +53,8 @@ jobs:
|
|
|
50
53
|
args: --release --out dist --interpreter '3.11 3.12 3.13'
|
|
51
54
|
rust-toolchain: stable
|
|
52
55
|
docker-options: -e CI
|
|
56
|
+
# https://github.com/PyO3/maturin/issues/2336#issuecomment-2507418846
|
|
57
|
+
maturin-version: 1.7.4
|
|
53
58
|
before-script-linux: |
|
|
54
59
|
# If we're running on rhel centos, install needed packages.
|
|
55
60
|
if command -v yum &> /dev/null; then
|
|
@@ -65,7 +70,6 @@ jobs:
|
|
|
65
70
|
build-sdist:
|
|
66
71
|
name: build sdist
|
|
67
72
|
# keep condition in sync with `build` job
|
|
68
|
-
if: github.ref_type == 'tag' || github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'Full Build')
|
|
69
73
|
runs-on: ubuntu-latest
|
|
70
74
|
steps:
|
|
71
75
|
- uses: actions/checkout@v4
|
|
@@ -74,6 +78,8 @@ jobs:
|
|
|
74
78
|
python-version: '3.13'
|
|
75
79
|
- uses: PyO3/maturin-action@v1
|
|
76
80
|
with:
|
|
81
|
+
# https://github.com/PyO3/maturin/issues/2336#issuecomment-2507418846
|
|
82
|
+
maturin-version: 1.7.4
|
|
77
83
|
command: sdist
|
|
78
84
|
args: --out dist
|
|
79
85
|
rust-toolchain: stable
|
|
@@ -141,3 +147,4 @@ jobs:
|
|
|
141
147
|
with:
|
|
142
148
|
name: ${{ needs.version.outputs.version }}
|
|
143
149
|
prerelease: ${{ needs.version.outputs.is_prerelease }}
|
|
150
|
+
generateReleaseNotes: true
|