Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/dist-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -x

TOP_DIR=$(cd $(dirname $0); pwd)/..

BUILD_CMD="python -m pip wheel . --extra-index-url https://download.pytorch.org/whl/nightly/cu130 -w dist"
BUILD_CMD="python -m pip wheel . --extra-index-url https://download.pytorch.org/whl/test/cu130 -w dist"

# TensorRT restricts our pip version
cd ${TOP_DIR} \
Expand Down
4 changes: 2 additions & 2 deletions py/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
numpy
packaging
pybind11==2.6.2
--extra-index-url https://download.pytorch.org/whl/nightly/cu130
torch>=2.13.0.dev,<2.14.0
--extra-index-url https://download.pytorch.org/whl/test/cu130
torch>=2.13.0,<2.14.0
--extra-index-url https://pypi.ngc.nvidia.com
pyyaml
dllist
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ requires = [
"ninja>=1.11.0",
"pyyaml>=6.0",
"cffi>=1.15.1",
"torch>=2.13.0.dev,<2.14.0",
"torch>=2.13.0,<2.14.0",
"pybind11==2.6.2",
]
build-backend = "setuptools.build_meta"
Expand Down Expand Up @@ -90,7 +90,7 @@ test = [
test-ext = [
"timm>=1.0.3",
"transformers>=5.0.0",
"torchvision>=0.27.0.dev,<0.28.0",
"torchvision>=0.27.0,<0.28.0",
"flashinfer-python; python_version >'3.9' and python_version <'3.13'",
]

Expand Down Expand Up @@ -161,10 +161,10 @@ conflicts = [

[tool.uv.sources]
torch = [
{ index = "pytorch-nightly-cu130" },
{ index = "pytorch-test-cu130" },
]
torchvision = [
{ index = "pytorch-nightly-cu130" },
{ index = "pytorch-test-cu130" },
]

[[tool.uv.index]]
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ def get_sbsa_requirements(base_requirements):
# TensorRT does not currently build wheels for Tegra, so we need to use the local tensorrt install from the tarball for thor
# also due to we use sbsa torch_tensorrt wheel for thor, so when we build sbsa wheel, we need to only include tensorrt dependency.
return requirements + [
"torch>=2.13.0.dev,<2.14.0",
"torch>=2.13.0,<2.14.0",
"tensorrt>=11.0.0,<11.1.0",
]

Expand All @@ -849,7 +849,7 @@ def get_x86_64_requirements(base_requirements):
return requirements
else:
requirements = requirements + [
"torch>=2.13.0.dev,<2.14.0",
"torch>=2.13.0,<2.14.0",
]
if USE_TRT_RTX:
return requirements + [
Expand Down
Loading