Skip to content

Commit b08ba85

Browse files
committed
release cut 1
1 parent 35c489d commit b08ba85

File tree

3 files changed

+11
-12
lines changed

3 files changed

+11
-12
lines changed

docker/dist-build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ set -x
55
TOP_DIR=$(cd $(dirname $0); pwd)/..
66

77
if [[ -z "${USE_PRE_CXX11}" ]]; then
8-
BUILD_CMD="python -m pip wheel . --extra-index-url https://download.pytorch.org/whl/nightly/cu124 -w dist"
8+
BUILD_CMD="python -m pip wheel . --extra-index-url https://download.pytorch.org/whl/test/cu128 -w dist"
99
else
10-
BUILD_CMD="python -m pip wheel . --config-setting="--build-option=--use-pre-cxx11-abi" --extra-index-url https://download.pytorch.org/whl/nightly/cu124 -w dist"
10+
BUILD_CMD="python -m pip wheel . --config-setting="--build-option=--use-pre-cxx11-abi" --extra-index-url https://download.pytorch.org/whl/test/cu128 -w dist"
1111
fi
1212

1313
# TensorRT restricts our pip version

py/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
numpy
22
packaging
33
pybind11==2.6.2
4-
--extra-index-url https://download.pytorch.org/whl/nightly/cu124
5-
torch>=2.7.0.dev,<2.8.0
6-
torchvision>=0.22.0.dev,<0.23.0
4+
--extra-index-url https://download.pytorch.org/whl/test/cu128
5+
torch>=2.7.0,<2.8.0
6+
torchvision>=0.22.0,<0.23.0
77
--extra-index-url https://pypi.ngc.nvidia.com
88
pyyaml

pyproject.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ requires = [
99
"typing-extensions>=4.7.0",
1010
"future>=0.18.3",
1111
"tensorrt-cu12>=10.9.0,<10.10.0",
12-
"torch>=2.7.0.dev,<2.8.0",
12+
"torch>=2.7.0,<2.8.0",
1313
"pybind11==2.6.2",
1414
"numpy",
1515
"sympy",
@@ -55,7 +55,7 @@ keywords = [
5555
"inference",
5656
]
5757
dependencies = [
58-
"torch>=2.7.0.dev,<2.8.0",
58+
"torch>=2.7.0,<2.8.0",
5959
"tensorrt>=10.9.0,<10.10.0",
6060
"tensorrt-cu12>=10.9.0,<10.10.0",
6161
"tensorrt-cu12-bindings>=10.9.0,<10.10.0",
@@ -108,12 +108,12 @@ prerelease = "if-necessary-or-explicit"
108108
index-strategy = "unsafe-best-match" # Needed for TRT-LLM
109109

110110
[tool.uv.sources]
111-
torch = [{ index = "pytorch-nightly-cu126" }]
112-
torchvision = [{ index = "pytorch-nightly-cu126" }]
111+
torch = [{ index = "pytorch-test-cu128" }]
112+
torchvision = [{ index = "pytorch-test-cu128" }]
113113

114114
[[tool.uv.index]]
115-
name = "pytorch-nightly-cu126"
116-
url = "https://download.pytorch.org/whl/nightly/cu126"
115+
name = "pytorch-test-cu128"
116+
url = "https://download.pytorch.org/whl/test/cu128"
117117
explicit = false
118118

119119
[[tool.uv.index]]
@@ -151,7 +151,6 @@ explicit = false
151151
# url = "https://download.pytorch.org/whl/cu118"
152152
# explicit = false
153153

154-
155154
[tool.ruff]
156155
# NOTE: Synchoronize the ignores with .flake8
157156
lint.ignore = [

0 commit comments

Comments
 (0)