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
6 changes: 5 additions & 1 deletion .github/workflows/inspect-r-api-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,11 @@ jobs:
- name: Install Python build and test tools
run: |
python -m pip install -U pip
python -m pip install build scikit-build-core nanobind pytest ruff mypy numpy scipy
# numpy pinned <2.5: the R parity cache keys hash test inputs generated via
# multivariate_normal (LAPACK SVD). numpy 2.5.x bundles an OpenBLAS whose SVD
# kernels differ on some runner CPUs, changing inputs bit-for-bit and causing
# cache misses. Re-evaluate at the next full live-R cache regeneration.
python -m pip install build scikit-build-core nanobind pytest ruff mypy "numpy<2.5" scipy
python -m pip install hypothesis pytest-benchmark pytest-xdist

- name: Plan R API parity review
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/native-backend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ jobs:
- name: Install build tools
run: |
python -m pip install -U pip
python -m pip install build scikit-build-core nanobind pytest ruff mypy numpy scipy
# numpy pinned <2.5: the R parity cache keys hash test inputs generated via
# multivariate_normal (LAPACK SVD). numpy 2.5.x bundles an OpenBLAS whose SVD
# kernels differ on some runner CPUs, changing inputs bit-for-bit and causing
# cache misses. Re-evaluate at the next full live-R cache regeneration.
python -m pip install build scikit-build-core nanobind pytest ruff mypy "numpy<2.5" scipy
python -m pip install hypothesis pytest-benchmark pytest-xdist

- name: Install package editable
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/parity-autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,11 @@ jobs:
- name: Install Python build and test tools
run: |
python -m pip install -U pip
python -m pip install build scikit-build-core nanobind pytest ruff mypy numpy scipy
# numpy pinned <2.5: the R parity cache keys hash test inputs generated via
# multivariate_normal (LAPACK SVD). numpy 2.5.x bundles an OpenBLAS whose SVD
# kernels differ on some runner CPUs, changing inputs bit-for-bit and causing
# cache misses. Re-evaluate at the next full live-R cache regeneration.
python -m pip install build scikit-build-core nanobind pytest ruff mypy "numpy<2.5" scipy
python -m pip install hypothesis pytest-benchmark pytest-xdist

- name: Install package editable
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/sync-from-nns-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,11 @@ jobs:
- name: Install build tools
run: |
python -m pip install -U pip
python -m pip install build scikit-build-core nanobind pytest ruff mypy numpy scipy
# numpy pinned <2.5: the R parity cache keys hash test inputs generated via
# multivariate_normal (LAPACK SVD). numpy 2.5.x bundles an OpenBLAS whose SVD
# kernels differ on some runner CPUs, changing inputs bit-for-bit and causing
# cache misses. Re-evaluate at the next full live-R cache regeneration.
python -m pip install build scikit-build-core nanobind pytest ruff mypy "numpy<2.5" scipy
python -m pip install hypothesis pytest-benchmark pytest-xdist

- name: Vendor NNS-core snapshot
Expand Down
Loading