From 6d41d330527e1b0bf62373fa19ce206937b0a926 Mon Sep 17 00:00:00 2001 From: J Wyman Date: Mon, 4 May 2026 15:14:20 -0400 Subject: [PATCH] maintenance: Update `grpcio` Dependencies This change updates the `grpcio` dependencies to `>=1.63.0` and removes the upper bound. --- Dockerfile.QA | 4 ++-- Dockerfile.sdk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.QA b/Dockerfile.QA index caa5fb0e2c..dfb8178bc5 100644 --- a/Dockerfile.QA +++ b/Dockerfile.QA @@ -352,8 +352,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ RUN rm -f /usr/bin/python && \ ln -s /usr/bin/python3 /usr/bin/python -RUN pip3 install --upgrade "numpy<2" pillow attrdict future "grpcio<1.68" requests gsutil \ - "awscli<=1.36.40" six "grpcio-channelz<1.68" prettytable virtualenv \ +RUN pip3 install --upgrade "numpy<2" pillow attrdict future "grpcio>=1.63.0" requests gsutil \ + "awscli<=1.36.40" six "grpcio-channelz>=1.63.0" prettytable virtualenv \ check-jsonschema # go needed for example go client test. diff --git a/Dockerfile.sdk b/Dockerfile.sdk index 8febb7bf39..8aa4fba099 100644 --- a/Dockerfile.sdk +++ b/Dockerfile.sdk @@ -84,7 +84,7 @@ RUN apt-get update && \ software-properties-common \ vim \ wget && \ - pip3 install --upgrade "grpcio-tools<1.68" cmake==4.0.3 auditwheel + pip3 install --upgrade "grpcio-tools>=1.63.0" cmake==4.0.3 auditwheel ENV CMAKE_POLICY_MINIMUM_REQUIRED=3.5 @@ -169,7 +169,7 @@ RUN apt-get update && \ python3-wheel \ vim \ wget && \ - pip3 install "grpcio<1.68" "grpcio-tools<1.68" && \ + pip3 install "grpcio>=1.63.0" "grpcio-tools>=1.63.0" && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*;