zarrs 0.1.0__tar.gz → 0.1.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.
Files changed (50) hide show
  1. {zarrs-0.1.0 → zarrs-0.1.1}/.github/workflows/cd.yml +9 -2
  2. {zarrs-0.1.0 → zarrs-0.1.1}/.gitignore +4 -0
  3. zarrs-0.1.1/Cargo.lock +2929 -0
  4. {zarrs-0.1.0 → zarrs-0.1.1}/Cargo.toml +8 -5
  5. {zarrs-0.1.0 → zarrs-0.1.1}/PKG-INFO +21 -11
  6. {zarrs-0.1.0 → zarrs-0.1.1}/README.md +19 -9
  7. {zarrs-0.1.0 → zarrs-0.1.1}/pyproject.toml +1 -1
  8. zarrs-0.1.1/python/zarrs/_internal.pyi +57 -0
  9. {zarrs-0.1.0 → zarrs-0.1.1}/python/zarrs/pipeline.py +51 -41
  10. {zarrs-0.1.0 → zarrs-0.1.1}/python/zarrs/utils.py +19 -22
  11. {zarrs-0.1.0 → zarrs-0.1.1}/src/chunk_item.rs +64 -83
  12. {zarrs-0.1.0 → zarrs-0.1.1}/src/lib.rs +73 -139
  13. zarrs-0.1.1/src/runtime.rs +18 -0
  14. zarrs-0.1.1/src/store/filesystem.rs +31 -0
  15. zarrs-0.1.1/src/store/http.rs +46 -0
  16. zarrs-0.1.1/src/store/manager.rs +61 -0
  17. zarrs-0.1.1/src/store.rs +85 -0
  18. {zarrs-0.1.0 → zarrs-0.1.1}/src/tests.rs +10 -6
  19. {zarrs-0.1.0 → zarrs-0.1.1}/tests/conftest.py +3 -4
  20. {zarrs-0.1.0 → zarrs-0.1.1}/tests/test_blosc.py +1 -1
  21. {zarrs-0.1.0 → zarrs-0.1.1}/tests/test_endian.py +1 -1
  22. {zarrs-0.1.0 → zarrs-0.1.1}/tests/test_gzip.py +1 -1
  23. {zarrs-0.1.0 → zarrs-0.1.1}/tests/test_pipeline.py +11 -0
  24. {zarrs-0.1.0 → zarrs-0.1.1}/tests/test_sharding.py +1 -1
  25. {zarrs-0.1.0 → zarrs-0.1.1}/tests/test_transpose.py +1 -1
  26. {zarrs-0.1.0 → zarrs-0.1.1}/tests/test_vlen.py +1 -1
  27. zarrs-0.1.1/tests/test_zarrs_http.py +38 -0
  28. {zarrs-0.1.0 → zarrs-0.1.1}/tests/test_zstd.py +1 -1
  29. zarrs-0.1.0/Cargo.lock +0 -1436
  30. zarrs-0.1.0/python/zarrs/_internal.pyi +0 -47
  31. zarrs-0.1.0/src/codec_pipeline_store_filesystem.rs +0 -47
  32. {zarrs-0.1.0 → zarrs-0.1.1}/.github/workflows/ci.yml +0 -0
  33. {zarrs-0.1.0 → zarrs-0.1.1}/.github/workflows/version-cmp.py +0 -0
  34. {zarrs-0.1.0 → zarrs-0.1.1}/.pre-commit-config.yaml +0 -0
  35. {zarrs-0.1.0 → zarrs-0.1.1}/.readthedocs.yml +0 -0
  36. {zarrs-0.1.0 → zarrs-0.1.1}/LICENSE +0 -0
  37. {zarrs-0.1.0 → zarrs-0.1.1}/docs/Makefile +0 -0
  38. {zarrs-0.1.0 → zarrs-0.1.1}/docs/api.md +0 -0
  39. {zarrs-0.1.0 → zarrs-0.1.1}/docs/conf.py +0 -0
  40. {zarrs-0.1.0 → zarrs-0.1.1}/docs/contributing.md +0 -0
  41. {zarrs-0.1.0 → zarrs-0.1.1}/docs/index.md +0 -0
  42. {zarrs-0.1.0 → zarrs-0.1.1}/docs/make.bat +0 -0
  43. {zarrs-0.1.0 → zarrs-0.1.1}/hatch.toml +0 -0
  44. {zarrs-0.1.0 → zarrs-0.1.1}/python/zarrs/__init__.py +0 -0
  45. {zarrs-0.1.0 → zarrs-0.1.1}/python/zarrs/py.typed +0 -0
  46. {zarrs-0.1.0 → zarrs-0.1.1}/src/bin/stub_gen.rs +0 -0
  47. {zarrs-0.1.0 → zarrs-0.1.1}/src/concurrency.rs +0 -0
  48. {zarrs-0.1.0 → zarrs-0.1.1}/src/utils.rs +0 -0
  49. {zarrs-0.1.0 → zarrs-0.1.1}/tests/test_codecs.py +0 -0
  50. {zarrs-0.1.0 → zarrs-0.1.1}/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
@@ -20,3 +20,7 @@ __pycache__/
20
20
 
21
21
  # Docs
22
22
  docs/generated/
23
+
24
+ # Lock files
25
+ Cargo.lock
26
+ uv.lock