zarrs 0.1.4__tar.gz → 0.2.0__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.

Potentially problematic release.


This version of zarrs might be problematic. Click here for more details.

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