We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51e4cc3 commit 182017cCopy full SHA for 182017c
1 file changed
.github/workflows/zarr-v2-compat.yml
@@ -14,10 +14,11 @@ jobs:
14
15
- uses: astral-sh/setup-uv@v5
16
17
- - name: Install with zarr v2
18
- run: |
19
- echo "zarr<3" > zarr-override.txt
20
- uv sync --python 3.11 --group test --override zarr-override.txt
+ - name: Install dependencies
+ run: uv sync --python 3.11 --group test
+
+ - name: Downgrade zarr to v2
21
+ run: uv pip install "zarr>=2.18,<3"
22
23
- name: Run tests
24
run: uv run pytest
0 commit comments