File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -132,3 +132,25 @@ jobs:
132
132
# We just run the CLI tests here because it doesn't require other upstream
133
133
# packages like sgkit (which are tangled up with the numpy 2 dependency)
134
134
python -m pytest tests/test_cli.py
135
+
136
+ test-zarr-version :
137
+ name : Test Zarr versions
138
+ runs-on : ubuntu-latest
139
+ strategy :
140
+ matrix :
141
+ zarr : ["==2.18.3", "3.0.0b1"]
142
+ steps :
143
+ - uses : actions/checkout@v4
144
+ - uses : actions/setup-python@v5
145
+ with :
146
+ python-version : ' 3.11'
147
+ - name : Install dependencies
148
+ run : |
149
+ python -m pip install --upgrade pip
150
+ python -m pip install '.[dev]'
151
+ - name : Install numpy${{ matrix.numpy }}
152
+ run : |
153
+ python -m pip install 'zarr${{ matrix.zarr }}'
154
+ - name : Run tests
155
+ run : |
156
+ python -m pytest
You can’t perform that action at this time.
0 commit comments