Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .github/workflows/ci-i386.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,6 @@ jobs:
uv pip install -v -e .[test,test_extras,msgpack,crc32c]
shell: alpine.sh {0}


- name: Install zarr-python
# Since zarr v3 requires numpy >= 1.25, on Python 3.11 leave it out
# so we can have some tests of our minimum version of numpy (1.24)
if: matrix.python-version != '3.11'
run: uv add zarr>=3
shell: alpine.sh {0}


- name: List installed packages
run: uv pip list
shell: alpine.sh {0}
Expand Down
16 changes: 6 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,6 @@ jobs:
export DISABLE_NUMCODECS_AVX2=""
python -m pip install -v -e .[test,test_extras,msgpack,crc32c,pcodec,zfpy]

- name: Install zarr-python
# Since zarr v3 requires numpy >= 1.25, on Python 3.11 leave it out
# so we can have some tests of our minimum version of numpy (1.24)
if: matrix.python-version != '3.11'
run: python -m pip install zarr>=3

- name: List installed packages
run: python -m pip list

Expand All @@ -75,6 +69,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
zarr-version: ["312", "313"]

defaults:
run:
Expand All @@ -93,10 +89,10 @@ jobs:
pixi-version: v0.49.0
cache: false

- name: List deps
- name: List installed packages
shell: "bash -l {0}"
run: pixi run -e default hatch run test:list-deps
run: pixi run ls-deps-${{matrix.zarr-version}}

- name: Run tests
- name: Run tests with Zarr ${{ matrix.zarr-version }}
shell: "bash -l {0}"
run: pixi run -e default hatch run test:test-zarr
run: pixi run test-zarr-${{ matrix.zarr-version }}
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ repos:
hooks:
- id: mypy
args: [--config-file, pyproject.toml]
additional_dependencies: [numpy, pytest, crc32c, zfpy, 'zarr>=3']
additional_dependencies: [numpy, pytest, crc32c, zfpy, 'zarr>=3.1.3']
Loading
Loading