Skip to content

Commit 710c45d

Browse files
committed
debug windows CI
1 parent 49b3fb8 commit 710c45d

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,17 @@ jobs:
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

src/test/python-scripts/parse_codecs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import zarr
2+
print("Using zarr version:", zarr.__version__)
23
from zarr.codecs.blosc import BloscCodec
34
from zarr.codecs.bytes import BytesCodec
45
from zarr.codecs.crc32c_ import Crc32cCodec

0 commit comments

Comments
 (0)