Skip to content

Commit d114517

Browse files
tomwhitejeromekelleher
authored andcommitted
Use released version of Zarr Python 3
1 parent 62fe20f commit d114517

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
runs-on: ubuntu-latest
139139
strategy:
140140
matrix:
141-
zarr: ["zarr==2.18.3", "git+https://github.com/zarr-developers/zarr-python.git"]
141+
zarr: ["==2.18.3", ">=3"]
142142
steps:
143143
- uses: actions/checkout@v4
144144
- uses: actions/setup-python@v5
@@ -148,9 +148,9 @@ jobs:
148148
run: |
149149
python -m pip install --upgrade pip
150150
python -m pip install '.[dev]'
151-
- name: Install ${{ matrix.zarr }}
151+
- name: Install zarr${{ matrix.zarr }}
152152
run: |
153-
python -m pip install --pre '${{ matrix.zarr }}'
153+
python -m pip install 'zarr${{ matrix.zarr }}'
154154
- name: Run tests
155155
run: |
156156
python -m pytest

0 commit comments

Comments
 (0)