zarrs 0.1.3__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.
- {zarrs-0.1.3 → zarrs-0.1.4}/.github/workflows/cd.yml +4 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/.readthedocs.yml +3 -1
- {zarrs-0.1.3 → zarrs-0.1.4}/Cargo.lock +417 -258
- {zarrs-0.1.3 → zarrs-0.1.4}/Cargo.toml +4 -3
- {zarrs-0.1.3 → zarrs-0.1.4}/PKG-INFO +1 -1
- {zarrs-0.1.3 → zarrs-0.1.4}/pyproject.toml +1 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/python/zarrs/_internal.pyi +10 -9
- {zarrs-0.1.3 → zarrs-0.1.4}/python/zarrs/pipeline.py +4 -3
- {zarrs-0.1.3 → zarrs-0.1.4}/src/lib.rs +44 -10
- {zarrs-0.1.3 → zarrs-0.1.4}/src/utils.rs +7 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/tests/test_vlen.py +18 -24
- {zarrs-0.1.3 → zarrs-0.1.4}/.github/workflows/ci.yml +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/.github/workflows/version-cmp.py +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/.gitignore +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/.pre-commit-config.yaml +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/LICENSE +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/README.md +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/docs/Makefile +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/docs/conf.py +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/docs/contributing.md +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/docs/index.md +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/docs/make.bat +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/hatch.toml +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/python/zarrs/__init__.py +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/python/zarrs/py.typed +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/python/zarrs/utils.py +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/src/bin/stub_gen.rs +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/src/chunk_item.rs +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/src/concurrency.rs +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/src/metadata_v2.rs +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/src/runtime.rs +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/src/store/filesystem.rs +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/src/store/http.rs +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/src/store/manager.rs +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/src/store.rs +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/src/tests.rs +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/tests/conftest.py +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/tests/test_blosc.py +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/tests/test_codecs.py +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/tests/test_endian.py +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/tests/test_gzip.py +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/tests/test_pipeline.py +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/tests/test_sharding.py +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/tests/test_transpose.py +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/tests/test_v2.py +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/tests/test_version.py +0 -0
- {zarrs-0.1.3 → zarrs-0.1.4}/tests/test_zarrs_http.py +0 -0
- {zarrs-0.1.3 → 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/*
|