mirror of
https://github.com/ultralytics/ultralytics
synced 2026-04-21 14:07:18 +00:00
fix: 🐞 pin torch version to <2.10 for executorch export (#23353)
Signed-off-by: Onuralp SEZER <onuralp@ultralytics.com>
This commit is contained in:
parent
eec4148e7b
commit
e780a49eb4
1 changed files with 2 additions and 2 deletions
|
|
@ -68,8 +68,8 @@ dependencies = [
|
|||
"pyyaml>=5.3.1",
|
||||
"requests>=2.23.0",
|
||||
"scipy>=1.4.1",
|
||||
"torch>=1.8.0",
|
||||
"torch>=1.8.0,!=2.4.0; sys_platform == 'win32'", # Windows CPU errors w/ 2.4.0 https://github.com/ultralytics/ultralytics/issues/15049
|
||||
"torch>=1.8.0,<2.10",
|
||||
"torch>=1.8.0,<2.10,!=2.4.0; sys_platform == 'win32'", # Windows CPU errors w/ 2.4.0 https://github.com/ultralytics/ultralytics/issues/15049
|
||||
"torchvision>=0.9.0",
|
||||
"psutil>=5.8.0", # system utilization
|
||||
"polars>=0.20.0",
|
||||
|
|
|
|||
Loading…
Reference in a new issue