From 9f5013458d06d90f297c9145ed1bb60d8665f93c Mon Sep 17 00:00:00 2001 From: Christian Simon Date: Wed, 4 Dec 2024 08:41:58 +0000 Subject: [PATCH] fix(examples) Update python rideshare to latest otel-profiling-python (#3740) This fixes this build error: > ERROR: Cannot install pyroscope-io==0.8.8 and pyroscope-otel==0.1.0 because these package versions have conflicting dependencies. --- .../python/rideshare/flask/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/language-sdk-instrumentation/python/rideshare/flask/Dockerfile b/examples/language-sdk-instrumentation/python/rideshare/flask/Dockerfile index 1113d291ef..a29e3058a0 100644 --- a/examples/language-sdk-instrumentation/python/rideshare/flask/Dockerfile +++ b/examples/language-sdk-instrumentation/python/rideshare/flask/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.9 -RUN pip3 install flask pyroscope-io==0.8.8 pyroscope-otel==0.1.0 +RUN pip3 install flask pyroscope-io==0.8.8 pyroscope-otel==0.4.0 RUN pip3 install opentelemetry-api opentelemetry-sdk opentelemetry-instrumentation-flask opentelemetry-exporter-otlp-proto-grpc ENV FLASK_ENV=development