From 44ab06a9ddb0acabdf04d706e9aec49cce4e9707 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20=22decko=22=20de=20Brito?= Date: Tue, 19 Nov 2024 11:23:36 -0300 Subject: [PATCH] Bump upperversion of protobuf to allow Protobuf v5. The new `opentelemetry` dependencies started to use protobuf 5 and dropped support to protobuf 4. This commit allow protobuf 5 to be installed when it's needed. [noissue] --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e8ac649123..549969b9dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,10 +52,10 @@ dependencies = [ "json_stream>=2.3.2,<2.4", "jq>=1.6.0,<1.9.0", "PyOpenSSL<25.0", - "opentelemetry-api>=1.27.0,<1.28", - "opentelemetry-sdk>=1.27.0,<1.28", - "opentelemetry-exporter-otlp-proto-http>=1.27.0,<1.28", - "protobuf>=4.21.1,<5.0", + "opentelemetry-api>=1.27.0,<1.29", + "opentelemetry-sdk>=1.27.0,<1.29", + "opentelemetry-exporter-otlp-proto-http>=1.27.0,<1.29", + "protobuf>=4.21.1,<6.0", "pulp-glue>=0.18.0,<0.30", "pygtrie>=2.5,<=2.5.0", "psycopg[binary]>=3.1.8,<=3.2.3",