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
234 changes: 141 additions & 93 deletions pixi.lock

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,12 @@ python = "3.12.*"

# Build requirements
cython = ">=3.1,<4"
numpy = ">=2"
# numpy 2.5.0 breaks locally-built petsc4py at import ("numpy.dtype size
# changed ... Expected 96 from C header, got 88 from PyObject") — verified
# with a CLEAN petsc4py rebuild against 2.5.0 (fails) vs 2.4.6 (works).
# conda-forge petsc4py binaries are unaffected; only the AMR envs' local
# builds break. Lift the cap when petsc4py/Cython support numpy 2.5.
numpy = ">=2,<2.5"
pip = ">=25,<26"
setuptools = ">=75,<76"
compilers = "*"
Expand Down
Loading
Loading