Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
strategy:
fail-fast: false
matrix:
zarr-version: ["312", "313"]
zarr-version: ["312", "313", "main"]

defaults:
run:
Expand Down
11 changes: 10 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ test-zarr-313 = [
"zarr==3.1.3",
"crc32c",
]
test-zarr-main = [
"pytest",
"pytest-cov",
"zarr @ git+https://github.com/zarr-developers/zarr-python.git@main",
"crc32c",
]

msgpack = [
"msgpack",
Expand Down Expand Up @@ -240,7 +246,8 @@ conflicts = [
# Zarr versions conflict with each other
[
{ group = "test-zarr-312" },
{ group = "test-zarr-313" }
{ group = "test-zarr-313" },
{ group = "test-zarr-main" }
]
]

Expand All @@ -257,5 +264,7 @@ uv = "*"
[tool.pixi.tasks]
ls-deps-312 = "uv run --group test-zarr-312 uv pip freeze"
ls-deps-313 = "uv run --group test-zarr-313 uv pip freeze"
ls-deps-main = "uv run --group test-zarr-main uv pip freeze"
test-zarr-312 = "uv run --group test-zarr-312 pytest numcodecs/tests/test_zarr3.py numcodecs/tests/test_zarr3_import.py"
test-zarr-313 = "uv run --group test-zarr-313 pytest numcodecs/tests/test_zarr3.py numcodecs/tests/test_zarr3_import.py"
test-zarr-main = "uv run --group test-zarr-main pytest numcodecs/tests/test_zarr3.py numcodecs/tests/test_zarr3_import.py"
Loading