Skip to content
Open
Show file tree
Hide file tree
Changes from 9 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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ numcodecs/*.c
# pixi environments
.pixi/*
*.egg-info
pixi.lock
pixi.lock
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -244,13 +244,17 @@ warn_unused_configs = true

[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-arm64", "osx-64", "win-64"]
platforms = ["linux-64", "linux-aarch64", "osx-arm64", "osx-64", "win-64"]

[tool.pixi.dependencies]
clang = ">=19.1.7,<20"
c-compiler = ">=1.9.0,<2"
cxx-compiler = ">=1.9.0,<2"
hatch = '==1.14.1'
pip = ">=25.2,<26"
setuptools = ">=80.9.0,<81"
cython = ">=3.1.4,<4"
numpy = ">=2.3.3,<3"

[[tool.hatch.envs.test.matrix]]
python = ["3.11"]
Expand All @@ -266,4 +270,4 @@ features = ["test"]

[tool.hatch.envs.test.scripts]
list-deps = "pip list"
test-zarr = "pytest numcodecs/tests/test_zarr3.py numcodecs/tests/test_zarr3_import.py"
test-zarr = "pytest numcodecs/tests/test_zarr3.py numcodecs/tests/test_zarr3_import.py"
Loading