Skip to content

Commit 1d63c73

Browse files
rwgkcursoragent
andcommitted
Fix pip install conflicts in tests/requirements.txt
- Fix numpy version conflict for Python 3.14 on ARM64 by excluding Python 3.14+ from the ARM64-specific numpy>=2.3.0 requirement - Add scipy requirement for Python 3.13 on Windows Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 4f81a12 commit 1d63c73

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/requirements.txt

Lines changed: 2 additions & 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 python_version<"3.14" 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
@@ -17,4 +17,5 @@ scipy~=1.5.4; platform_python_implementation=="CPython" and python_version<"3.10
1717
scipy~=1.8.0; platform_python_implementation=="CPython" and python_version=="3.10" and sys_platform!="win32"
1818
scipy~=1.11.1; platform_python_implementation=="CPython" and python_version>="3.11" and python_version<"3.13" and sys_platform!="win32"
1919
scipy~=1.15.2; platform_python_implementation=="CPython" and python_version=="3.13" and sys_platform!="win32"
20+
scipy~=1.15.2; platform_python_implementation=="CPython" and python_version=="3.13" and sys_platform=="win32"
2021
tomlkit

0 commit comments

Comments
 (0)