Skip to content
Merged
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 Dockerfile.QA
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ COPY --chown=1000:1000 --from=sdk /workspace/qa/ qa/
# install the tritonserver/triton python client APIs.
RUN rm -fr qa/L0_copyrights qa/L0_build_variants && \
find qa/pkgs/ -maxdepth 1 -type f -name \
"tritonclient-*linux*.whl" | xargs printf -- '%s[all]' | \
"tritonclient-*-py3-none-any.whl" | xargs printf -- '%s[all]' | \
xargs pip3 install --upgrade

ENV LD_LIBRARY_PATH /opt/tritonserver/qa/clients:${LD_LIBRARY_PATH}
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.sdk
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ RUN apt-get update && \
software-properties-common \
vim \
wget && \
pip3 install --upgrade "grpcio-tools<1.68" cmake==4.0.3
pip3 install --upgrade "grpcio-tools<1.68" cmake==4.0.3 auditwheel

ENV CMAKE_POLICY_MINIMUM_REQUIRED=3.5

Expand Down Expand Up @@ -197,7 +197,7 @@ COPY qa/images/mug.jpg images/mug.jpg
# be used to run the client examples.
RUN pip3 install --upgrade "numpy<2" pillow attrdict && \
find install/python/ -maxdepth 1 -type f -name \
"tritonclient-*linux*.whl" | xargs printf -- '%s[all]' | \
"tritonclient-*-py3-none-any.whl" | xargs printf -- '%s[all]' | \
xargs pip3 install --upgrade

# Install GenAI-Perf
Expand Down
4 changes: 2 additions & 2 deletions qa/L0_backend_python/setup_python_enviroment.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2023-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright 2023-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
Expand Down Expand Up @@ -109,7 +109,7 @@ rm -f /usr/bin/python3 && \
ln -s "/usr/bin/python3.${PYTHON_ENV_VERSION}" /usr/bin/python3
pip3 install --upgrade requests numpy virtualenv protobuf
find /opt/tritonserver/qa/pkgs/ -maxdepth 1 -type f -name \
"tritonclient-*linux*.whl" | xargs printf -- '%s[all]' | \
"tritonclient-*-py3-none-any.whl" | xargs printf -- '%s[all]' | \
xargs pip3 install --upgrade

# Build triton-shm-monitor for the test
Expand Down
8 changes: 3 additions & 5 deletions qa/L0_sdk/test.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2019-2025, 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
Expand Down Expand Up @@ -153,11 +153,9 @@ fi
# we need to replace the text here as well to match the normalized version.
WHLVERSION=`cat /workspace/TRITON_VERSION | sed 's/dev/\.dev0/'`
if [[ "aarch64" != $(uname -m) ]] ; then
WHLS="tritonclient-${WHLVERSION}-py3-none-any.whl \
tritonclient-${WHLVERSION}-py3-none-manylinux1_x86_64.whl"
WHLS="tritonclient-${WHLVERSION}-py3-none-any.whl"
else
WHLS="tritonclient-${WHLVERSION}-py3-none-any.whl \
tritonclient-${WHLVERSION}-py3-none-manylinux2014_aarch64.whl"
WHLS="tritonclient-${WHLVERSION}-py3-none-any.whl"
fi
for l in $WHLS; do
if [[ ! -f "triton_client/python/$l" ]]; then
Expand Down
Loading