zarrs 0.1.2__tar.gz → 0.1.4__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 (48) hide show
  1. {zarrs-0.1.2 → zarrs-0.1.4}/.github/workflows/cd.yml +4 -0
  2. {zarrs-0.1.2 → zarrs-0.1.4}/.readthedocs.yml +3 -1
  3. {zarrs-0.1.2 → zarrs-0.1.4}/Cargo.lock +421 -262
  4. {zarrs-0.1.2 → zarrs-0.1.4}/Cargo.toml +4 -3
  5. {zarrs-0.1.2 → zarrs-0.1.4}/PKG-INFO +2 -2
  6. {zarrs-0.1.2 → zarrs-0.1.4}/pyproject.toml +2 -1
  7. {zarrs-0.1.2 → zarrs-0.1.4}/python/zarrs/_internal.pyi +10 -9
  8. {zarrs-0.1.2 → zarrs-0.1.4}/python/zarrs/pipeline.py +8 -7
  9. {zarrs-0.1.2 → zarrs-0.1.4}/python/zarrs/utils.py +8 -2
  10. {zarrs-0.1.2 → zarrs-0.1.4}/src/lib.rs +44 -10
  11. {zarrs-0.1.2 → zarrs-0.1.4}/src/utils.rs +7 -0
  12. {zarrs-0.1.2 → zarrs-0.1.4}/tests/test_vlen.py +18 -24
  13. {zarrs-0.1.2 → zarrs-0.1.4}/.github/workflows/ci.yml +0 -0
  14. {zarrs-0.1.2 → zarrs-0.1.4}/.github/workflows/version-cmp.py +0 -0
  15. {zarrs-0.1.2 → zarrs-0.1.4}/.gitignore +0 -0
  16. {zarrs-0.1.2 → zarrs-0.1.4}/.pre-commit-config.yaml +0 -0
  17. {zarrs-0.1.2 → zarrs-0.1.4}/LICENSE +0 -0
  18. {zarrs-0.1.2 → zarrs-0.1.4}/README.md +0 -0
  19. {zarrs-0.1.2 → zarrs-0.1.4}/docs/Makefile +0 -0
  20. {zarrs-0.1.2 → zarrs-0.1.4}/docs/conf.py +0 -0
  21. {zarrs-0.1.2 → zarrs-0.1.4}/docs/contributing.md +0 -0
  22. {zarrs-0.1.2 → zarrs-0.1.4}/docs/index.md +0 -0
  23. {zarrs-0.1.2 → zarrs-0.1.4}/docs/make.bat +0 -0
  24. {zarrs-0.1.2 → zarrs-0.1.4}/hatch.toml +0 -0
  25. {zarrs-0.1.2 → zarrs-0.1.4}/python/zarrs/__init__.py +0 -0
  26. {zarrs-0.1.2 → zarrs-0.1.4}/python/zarrs/py.typed +0 -0
  27. {zarrs-0.1.2 → zarrs-0.1.4}/src/bin/stub_gen.rs +0 -0
  28. {zarrs-0.1.2 → zarrs-0.1.4}/src/chunk_item.rs +0 -0
  29. {zarrs-0.1.2 → zarrs-0.1.4}/src/concurrency.rs +0 -0
  30. {zarrs-0.1.2 → zarrs-0.1.4}/src/metadata_v2.rs +0 -0
  31. {zarrs-0.1.2 → zarrs-0.1.4}/src/runtime.rs +0 -0
  32. {zarrs-0.1.2 → zarrs-0.1.4}/src/store/filesystem.rs +0 -0
  33. {zarrs-0.1.2 → zarrs-0.1.4}/src/store/http.rs +0 -0
  34. {zarrs-0.1.2 → zarrs-0.1.4}/src/store/manager.rs +0 -0
  35. {zarrs-0.1.2 → zarrs-0.1.4}/src/store.rs +0 -0
  36. {zarrs-0.1.2 → zarrs-0.1.4}/src/tests.rs +0 -0
  37. {zarrs-0.1.2 → zarrs-0.1.4}/tests/conftest.py +0 -0
  38. {zarrs-0.1.2 → zarrs-0.1.4}/tests/test_blosc.py +0 -0
  39. {zarrs-0.1.2 → zarrs-0.1.4}/tests/test_codecs.py +0 -0
  40. {zarrs-0.1.2 → zarrs-0.1.4}/tests/test_endian.py +0 -0
  41. {zarrs-0.1.2 → zarrs-0.1.4}/tests/test_gzip.py +0 -0
  42. {zarrs-0.1.2 → zarrs-0.1.4}/tests/test_pipeline.py +0 -0
  43. {zarrs-0.1.2 → zarrs-0.1.4}/tests/test_sharding.py +0 -0
  44. {zarrs-0.1.2 → zarrs-0.1.4}/tests/test_transpose.py +0 -0
  45. {zarrs-0.1.2 → zarrs-0.1.4}/tests/test_v2.py +0 -0
  46. {zarrs-0.1.2 → zarrs-0.1.4}/tests/test_version.py +0 -0
  47. {zarrs-0.1.2 → zarrs-0.1.4}/tests/test_zarrs_http.py +0 -0
  48. {zarrs-0.1.2 → zarrs-0.1.4}/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/*
@@ -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"