Upgrade PyTorch version in documentation (#11114)

## Summary

PyTorch 2.6.0 is now GA!
This commit is contained in:
Charlie Marsh 2025-01-30 14:05:13 -05:00 committed by GitHub
parent 658ca89fb1
commit 7531bb8669
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 12 additions and 12 deletions

View File

@ -46,8 +46,8 @@ name = "project"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"torch>=2.5.1",
"torchvision>=0.20.1",
"torch>=2.6.0",
"torchvision>=0.21.0",
]
```
@ -228,8 +228,8 @@ name = "project"
version = "0.1.0"
requires-python = ">=3.12.0"
dependencies = [
"torch>=2.5.1",
"torchvision>=0.20.1",
"torch>=2.6.0",
"torchvision>=0.21.0",
]
[tool.uv.sources]
@ -261,8 +261,8 @@ name = "project"
version = "0.1.0"
requires-python = ">=3.12.0"
dependencies = [
"torch>=2.5.1",
"torchvision>=0.20.1",
"torch>=2.6.0",
"torchvision>=0.21.0",
]
[tool.uv.sources]
@ -295,8 +295,8 @@ name = "project"
version = "0.1.0"
requires-python = ">=3.12.0"
dependencies = [
"torch>=2.5.1",
"torchvision>=0.20.1",
"torch>=2.6.0",
"torchvision>=0.21.0",
"pytorch-triton-xpu>=3.2.0 ; sys_platform == 'linux'",
]
@ -336,12 +336,12 @@ dependencies = []
[project.optional-dependencies]
cpu = [
"torch>=2.5.1",
"torchvision>=0.20.1",
"torch>=2.6.0",
"torchvision>=0.21.0",
]
cu124 = [
"torch>=2.5.1",
"torchvision>=0.20.1",
"torch>=2.6.0",
"torchvision>=0.21.0",
]
[tool.uv]