File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,11 @@ jobs:
118118 run : |
119119 $JAXCI_PYTHON -m pip install uv~=0.5.30
120120 $JAXCI_PYTHON -m uv pip install -r build/test-requirements.txt
121+
122+ # CPU Pytests crash with NumPy 2.2+ on Linux Aarch64; b/399168632
123+ if [[ $OS == "linux" && $ARCH == "aarch64" ]]; then
124+ $JAXCI_PYTHON -m uv pip install numpy~=2.1.0
125+ fi
121126 # Halt for testing
122127 - name : Wait For Connection
123128 uses : google-ml-infra/actions/ci_connection@main
Original file line number Diff line number Diff line change @@ -18,7 +18,4 @@ setuptools
1818matplotlib~=3.8.4; python_version=="3.10"
1919matplotlib; python_version>="3.11"
2020opt-einsum
21- auditwheel
22-
23- # CPU Pytests crash with NumPy 2.2+ on Linux Aarch64; b/399168632
24- numpy~=2.1.0; platform_system == "Linux" and platform_machine == "aarch64"
21+ auditwheel
You can’t perform that action at this time.
0 commit comments