You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pyproject.toml
+10-9Lines changed: 10 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ requires = [
9
9
"typing-extensions>=4.7.0",
10
10
"future>=0.18.3",
11
11
"tensorrt-cu12==10.3.0",
12
-
"torch>=2.6.0.dev,<2.7.0",
12
+
"torch>=2.5.0.dev,<2.6.0",
13
13
"pybind11==2.6.2",
14
14
"numpy",
15
15
]
@@ -54,7 +54,7 @@ keywords = [
54
54
"inference",
55
55
]
56
56
dependencies = [
57
-
"torch>=2.6.0.dev,<2.7.0",
57
+
"torch>=2.5.0.dev,<2.6.0",
58
58
"tensorrt-cu12==10.3.0",
59
59
"tensorrt-cu12-bindings==10.3.0",
60
60
"tensorrt-cu12-libs==10.3.0",
@@ -65,7 +65,9 @@ dependencies = [
65
65
dynamic = ["version"]
66
66
67
67
[project.optional-dependencies]
68
-
#torchvision = ["torchvision>=0.21.dev,<0.22.0"] # Reenable once torchvision bumps to 2.6.0
68
+
torchvision = [
69
+
"torchvision",
70
+
] #Leaving torchvisions dependency unconstrained so uv can just install something that should work for the torch we have. TV's on PyT makes it hard to put version constrains in
"https://download.pytorch.org/whl/nightly/cu124"# We are going to define the dev enviorment as latest supported CUDA, and allow CI to handle the others, change as needed
104
+
"https://download.pytorch.org/whl/nightly/cu124",# We are going to define the dev enviorment as latest supported CUDA, and allow CI to handle the others, change as needed
0 commit comments