Skip to content

Commit f332979

Browse files
committed
Use existing zarr-python install
1 parent a59dce3 commit f332979

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
[ubuntu-latest, ubuntu-22.04-arm, windows-latest, macos-13, macos-14]
2121
include:
2222
# Add one test run for zarr 3.0.x
23-
- zarr-version: "3.0.*"
24-
python-version: "3.11"
23+
- python-version: "3.12"
24+
zarr-version: "3.0.*"
2525
platform: "ubuntu-latest"
2626

2727
defaults:
@@ -59,20 +59,19 @@ jobs:
5959
run: |
6060
export DISABLE_NUMCODECS_AVX2=""
6161
python -m pip install -v -e .[test,test_extras,msgpack,crc32c,pcodec,zfpy]
62-
python -m pip install zarr==${{ matrix.zarr-version }}
6362
6463
- name: Install zarr-python
6564
# Since zarr v3 requires numpy >= 1.25, on Python 3.11 leave it out
6665
# so we can have some tests of our minimum version of numpy (1.24)
6766
if: matrix.python-version != '3.11'
68-
run: python -m pip install zarr>=3
67+
run: python -m pip install zarr==${{ matrix.zarr-version }}
6968

7069
- name: List installed packages
7170
run: python -m pip list
7271

7372
- name: Run tests
7473
shell: "bash -l {0}"
75-
run: pytest -v
74+
run: pytest -v numcodecs/tests
7675

7776
- uses: codecov/codecov-action@v5
7877
with:

0 commit comments

Comments
 (0)