torch dep fix
This commit is contained in:
parent
463bb48222
commit
364f24a2ca
1 changed files with 4 additions and 4 deletions
|
|
@ -43,12 +43,12 @@ package = true
|
|||
|
||||
[tool.uv.sources]
|
||||
torch = [
|
||||
{ index = "pytorch-cu128", extra = "torch-cu128" },
|
||||
{ index = "pytorch-cpu", extra = "torch" }
|
||||
{ index = "pytorch-cu128", extra = "torch-cu128", marker = "sys_platform == 'linux'" },
|
||||
{ index = "pytorch-cpu", extra = "torch", marker = "sys_platform != 'linux'" }
|
||||
]
|
||||
torchvision = [
|
||||
{ index = "pytorch-cu128", extra = "torch-cu128" },
|
||||
{ index = "pytorch-cpu", extra = "torch" }
|
||||
{ index = "pytorch-cu128", extra = "torch-cu128", marker = "sys_platform == 'linux'" },
|
||||
{ index = "pytorch-cpu", extra = "torch", marker = "sys_platform != 'linux'" }
|
||||
]
|
||||
|
||||
[[tool.uv.index]]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue