File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 7272
7373 - name : Install zarr-python
7474 shell : " bash -l {0}"
75+ # Since zarr v3 requires numpy >= 1.25, on Python 3.11 leave it out
76+ # so we can have some tests of our minimum version of numpy (1.24)
77+ if : matrix.python-version != '3.11'
7578 run : |
7679 conda activate env
7780 # TODO: remove --pre option when zarr v3 is out
Original file line number Diff line number Diff line change 33import numpy as np
44import pytest
55
6- import numcodecs .zarr3
7-
86zarr = pytest .importorskip ("zarr" )
97
8+ import numcodecs .zarr3 # noqa: E402
9+
1010pytestmark = [
1111 pytest .mark .skipif (zarr .__version__ < "3.0.0" , reason = "zarr 3.0.0 or later is required" ),
1212 pytest .mark .filterwarnings ("ignore:Codec 'numcodecs.*' not configured in config.*:UserWarning" ),
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ A Python package providing buffer compression and transformation codecs \
1515for use in data storage and communication applications."""
1616readme = " README.rst"
1717dependencies = [
18- " numpy>=1.23 " ,
18+ " numpy>=1.24 " ,
1919]
2020requires-python = " >=3.11"
2121dynamic = [
You can’t perform that action at this time.
0 commit comments