zarrs 0.1.3__tar.gz → 0.1.5__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 (49) hide show
  1. {zarrs-0.1.3 → zarrs-0.1.5}/.github/workflows/cd.yml +4 -0
  2. {zarrs-0.1.3 → zarrs-0.1.5}/.github/workflows/ci.yml +3 -3
  3. {zarrs-0.1.3 → zarrs-0.1.5}/.pre-commit-config.yaml +1 -1
  4. {zarrs-0.1.3 → zarrs-0.1.5}/.readthedocs.yml +3 -1
  5. {zarrs-0.1.3 → zarrs-0.1.5}/Cargo.lock +695 -426
  6. {zarrs-0.1.3 → zarrs-0.1.5}/Cargo.toml +8 -8
  7. {zarrs-0.1.3 → zarrs-0.1.5}/PKG-INFO +6 -38
  8. {zarrs-0.1.3 → zarrs-0.1.5}/README.md +4 -4
  9. zarrs-0.1.5/docs/contributing.md +56 -0
  10. {zarrs-0.1.3 → zarrs-0.1.5}/pyproject.toml +15 -26
  11. {zarrs-0.1.3 → zarrs-0.1.5}/python/zarrs/_internal.pyi +16 -17
  12. {zarrs-0.1.3 → zarrs-0.1.5}/python/zarrs/pipeline.py +4 -3
  13. {zarrs-0.1.3 → zarrs-0.1.5}/src/chunk_item.rs +6 -4
  14. {zarrs-0.1.3 → zarrs-0.1.5}/src/lib.rs +96 -65
  15. {zarrs-0.1.3 → zarrs-0.1.5}/src/metadata_v2.rs +7 -5
  16. {zarrs-0.1.3 → zarrs-0.1.5}/src/utils.rs +7 -0
  17. {zarrs-0.1.3 → zarrs-0.1.5}/tests/test_vlen.py +18 -24
  18. zarrs-0.1.3/docs/contributing.md +0 -40
  19. {zarrs-0.1.3 → zarrs-0.1.5}/.github/workflows/version-cmp.py +0 -0
  20. {zarrs-0.1.3 → zarrs-0.1.5}/.gitignore +0 -0
  21. {zarrs-0.1.3 → zarrs-0.1.5}/LICENSE +0 -0
  22. {zarrs-0.1.3 → zarrs-0.1.5}/docs/Makefile +0 -0
  23. {zarrs-0.1.3 → zarrs-0.1.5}/docs/conf.py +0 -0
  24. {zarrs-0.1.3 → zarrs-0.1.5}/docs/index.md +0 -0
  25. {zarrs-0.1.3 → zarrs-0.1.5}/docs/make.bat +0 -0
  26. {zarrs-0.1.3 → zarrs-0.1.5}/hatch.toml +0 -0
  27. {zarrs-0.1.3 → zarrs-0.1.5}/python/zarrs/__init__.py +0 -0
  28. {zarrs-0.1.3 → zarrs-0.1.5}/python/zarrs/py.typed +0 -0
  29. {zarrs-0.1.3 → zarrs-0.1.5}/python/zarrs/utils.py +0 -0
  30. {zarrs-0.1.3 → zarrs-0.1.5}/src/bin/stub_gen.rs +0 -0
  31. {zarrs-0.1.3 → zarrs-0.1.5}/src/concurrency.rs +0 -0
  32. {zarrs-0.1.3 → zarrs-0.1.5}/src/runtime.rs +0 -0
  33. {zarrs-0.1.3 → zarrs-0.1.5}/src/store/filesystem.rs +0 -0
  34. {zarrs-0.1.3 → zarrs-0.1.5}/src/store/http.rs +0 -0
  35. {zarrs-0.1.3 → zarrs-0.1.5}/src/store/manager.rs +0 -0
  36. {zarrs-0.1.3 → zarrs-0.1.5}/src/store.rs +0 -0
  37. {zarrs-0.1.3 → zarrs-0.1.5}/src/tests.rs +0 -0
  38. {zarrs-0.1.3 → zarrs-0.1.5}/tests/conftest.py +0 -0
  39. {zarrs-0.1.3 → zarrs-0.1.5}/tests/test_blosc.py +0 -0
  40. {zarrs-0.1.3 → zarrs-0.1.5}/tests/test_codecs.py +0 -0
  41. {zarrs-0.1.3 → zarrs-0.1.5}/tests/test_endian.py +0 -0
  42. {zarrs-0.1.3 → zarrs-0.1.5}/tests/test_gzip.py +0 -0
  43. {zarrs-0.1.3 → zarrs-0.1.5}/tests/test_pipeline.py +0 -0
  44. {zarrs-0.1.3 → zarrs-0.1.5}/tests/test_sharding.py +0 -0
  45. {zarrs-0.1.3 → zarrs-0.1.5}/tests/test_transpose.py +0 -0
  46. {zarrs-0.1.3 → zarrs-0.1.5}/tests/test_v2.py +0 -0
  47. {zarrs-0.1.3 → zarrs-0.1.5}/tests/test_version.py +0 -0
  48. {zarrs-0.1.3 → zarrs-0.1.5}/tests/test_zarrs_http.py +0 -0
  49. {zarrs-0.1.3 → zarrs-0.1.5}/tests/test_zstd.py +0 -0
@@ -59,6 +59,10 @@ jobs:
59
59
  # If we're running on rhel centos, install needed packages.
60
60
  if command -v yum &> /dev/null; then
61
61
  yum update -y && yum install -y perl-core
62
+ # https://github.com/PyO3/maturin-action/discussions/152
63
+ if [[ "${{ matrix.os }}" == "linux" && "${{ matrix.target }}" == "x86_64" && "${{ matrix.manylinux }}" == "2_28" ]]; then
64
+ yum update -y && yum install -y clang
65
+ fi
62
66
  fi
63
67
  - run: ${{ (matrix.os == 'windows' && 'dir') || 'ls -lh' }} dist/
64
68
  - run: twine check --strict dist/*
@@ -41,9 +41,9 @@ jobs:
41
41
  python-version: "3.x"
42
42
 
43
43
  - name: Install UV
44
- uses: astral-sh/setup-uv@v3
44
+ uses: astral-sh/setup-uv@v6
45
45
  with:
46
- version: "0.5.0"
46
+ version: "0.7.19"
47
47
  enable-cache: true
48
48
  cache-dependency-glob: |
49
49
  pyproject.toml
@@ -51,7 +51,7 @@ jobs:
51
51
 
52
52
  - name: Install python deps + Build
53
53
  run: |
54
- uv pip install --system -e ".[test,dev]" --verbose
54
+ uv pip install --system -e . --group dev --verbose
55
55
 
56
56
  - name: Python Tests
57
57
  run: pytest -n auto
@@ -21,7 +21,7 @@ repos:
21
21
  language: system
22
22
  pass_filenames: false
23
23
  - repo: https://github.com/astral-sh/ruff-pre-commit
24
- rev: v0.7.2
24
+ rev: v0.11.9
25
25
  hooks:
26
26
  - id: ruff
27
27
  args: ["--fix"]
@@ -1,6 +1,8 @@
1
1
  version: 2
2
2
  build:
3
- os: ubuntu-20.04
3
+ os: ubuntu-24.04
4
+ apt_packages:
5
+ - clang
4
6
  tools:
5
7
  python: "3.12"
6
8
  rust: "latest"