From 3b1b6f2919c11b712f861c1aae9062073f5cde50 Mon Sep 17 00:00:00 2001 From: J Wyman Date: Fri, 24 Apr 2026 16:46:33 -0400 Subject: [PATCH 1/2] remove grpcio package upper bound --- src/python/library/requirements/requirements_grpc.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/library/requirements/requirements_grpc.txt b/src/python/library/requirements/requirements_grpc.txt index 4ec0fedcd..bd3d86b25 100644 --- a/src/python/library/requirements/requirements_grpc.txt +++ b/src/python/library/requirements/requirements_grpc.txt @@ -24,7 +24,7 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -grpcio>=1.63.0,<1.68 +grpcio>=1.81.1 numpy>=1.19.1 packaging>=14.1 protobuf>=6.30.0,<7.0 From dd6502c44a2650de16b4ea460886a117a43b8894 Mon Sep 17 00:00:00 2001 From: J Wyman Date: Fri, 26 Jun 2026 16:12:32 -0400 Subject: [PATCH 2/2] remove pkg_resources The pkg_resources wheel has been deprecated. --- .../library/tritonclient/utils/cuda_shared_memory/__init__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/python/library/tritonclient/utils/cuda_shared_memory/__init__.py b/src/python/library/tritonclient/utils/cuda_shared_memory/__init__.py index 3af88a0fd..2a655207d 100755 --- a/src/python/library/tritonclient/utils/cuda_shared_memory/__init__.py +++ b/src/python/library/tritonclient/utils/cuda_shared_memory/__init__.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright 2019-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# Copyright 2019-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions @@ -38,11 +38,9 @@ import base64 import ctypes -import os import struct import numpy as np -import pkg_resources from .. import _dlpack from .._shared_memory_tensor import SharedMemoryTensor