From c766740447c94a01c803584c2b8001eb2f868d96 Mon Sep 17 00:00:00 2001 From: pranavm Date: Wed, 20 Aug 2025 14:09:53 -0700 Subject: [PATCH 1/2] Updates version to 0.1.4 --- tripy/nvtripy/__init__.py | 2 +- tripy/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tripy/nvtripy/__init__.py b/tripy/nvtripy/__init__.py index ecff8b158..dea7e52eb 100644 --- a/tripy/nvtripy/__init__.py +++ b/tripy/nvtripy/__init__.py @@ -15,7 +15,7 @@ # limitations under the License. # -__version__ = "0.1.3" +__version__ = "0.1.4" # Import TensorRT to make sure all dependent libraries are loaded first. import tensorrt diff --git a/tripy/pyproject.toml b/tripy/pyproject.toml index 43b1c9125..20c23c4d1 100644 --- a/tripy/pyproject.toml +++ b/tripy/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "nvtripy" -version = "0.1.3" +version = "0.1.4" authors = [{ name = "NVIDIA", email = "svc_tensorrt@nvidia.com" }] description = "Tripy: A Python Programming Model For TensorRT" readme = "README.md" From 6c21d3ed118ac6ca18e1c03fa8cc6ec9eaa25d54 Mon Sep 17 00:00:00 2001 From: pranavm Date: Wed, 20 Aug 2025 14:48:16 -0700 Subject: [PATCH 2/2] Adds upper bound to TensorRT version to workaround a breakage --- tripy/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tripy/pyproject.toml b/tripy/pyproject.toml index 20c23c4d1..0af40506d 100644 --- a/tripy/pyproject.toml +++ b/tripy/pyproject.toml @@ -7,7 +7,7 @@ readme = "README.md" requires-python = ">= 3.9" license = { text = "Apache 2.0" } dependencies = [ - "tensorrt>=10.11", + "tensorrt>=10.11,<=10.13.0.35", "mlir-tensorrt-compiler==0.1.43+cuda12.trt109", "mlir-tensorrt-runtime==0.1.43+cuda12.trt109", "colored==2.2.3",