File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 3636 uv venv && uv init
3737 uv add zarr
3838 uv add zarrita
39-
39+ uv add numcodecs
40+ - name : Debug Python env
41+ continue-on-error : true
42+ run : |
43+ uv run python -c "import zarr; print(zarr.__version__)"
44+ uv run python -c "from zarr.codecs.blosc import BloscCodec; print('BloscCodec OK')"
45+ - name : Debug zarr-python
46+ continue-on-error : true
47+ run : |
48+ uv add "zarr[blosc]"
49+ uv run python -c "from zarr.codecs.blosc import BloscCodec; print('BloscCodec OK')"
4050 - name : Download testdata
4151 run : |
4252 mkdir testoutput
Original file line number Diff line number Diff line change 11import zarr
2+ print ("Using zarr version:" , zarr .__version__ )
23from zarr .codecs .blosc import BloscCodec
34from zarr .codecs .bytes import BytesCodec
45from zarr .codecs .crc32c_ import Crc32cCodec
You can’t perform that action at this time.
0 commit comments