Skip to content

Commit 04fea44

Browse files
committed
fix(tests): allow numpy>=2.3.0 for ARM64 to fix Windows ARM CI
MSYS2 upgraded from numpy 2.3.x to 2.4.0, which no longer satisfies the ~=2.3.0 constraint. Relaxing to >=2.3.0 allows the MSYS2-provided numpy 2.4.0 to be used.
1 parent e00b223 commit 04fea44

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ numpy~=1.26.0; platform_python_implementation=="GraalVM" and sys_platform=="linu
88
numpy~=1.21.5; platform_python_implementation=="CPython" and python_version>="3.8" and python_version<"3.10"
99
numpy~=1.22.2; platform_python_implementation=="CPython" and python_version=="3.10"
1010
numpy~=1.26.0; platform_python_implementation=="CPython" and python_version>="3.11" and python_version<"3.13" and platform_machine!="ARM64"
11-
numpy~=2.3.0; platform_python_implementation=="CPython" and python_version>="3.11" and platform_machine=="ARM64"
11+
numpy>=2.3.0; platform_python_implementation=="CPython" and python_version>="3.11" and platform_machine=="ARM64"
1212
numpy~=2.2.0; platform_python_implementation=="CPython" and python_version=="3.13" and platform_machine!="ARM64"
1313
numpy==2.4.0; platform_python_implementation=="CPython" and python_version>="3.14"
1414
pytest>=6

0 commit comments

Comments
 (0)