From c92e5bfcafc40270b0cdce293d5524f8e2d9658f Mon Sep 17 00:00:00 2001 From: Mayur Singal <39544459+ulixius9@users.noreply.github.com> Date: Wed, 6 Nov 2024 15:51:43 +0530 Subject: [PATCH] MINOR: Airflow dependency Fix (#18530) --- ingestion/setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ingestion/setup.py b/ingestion/setup.py index fc6f93dab02..a937c4698d7 100644 --- a/ingestion/setup.py +++ b/ingestion/setup.py @@ -146,6 +146,9 @@ base_requirements = { plugins: Dict[str, Set[str]] = { "airflow": { VERSIONS["airflow"], + "opentelemetry-api==1.27.0", # internal dependency of airflow, need to restrict version + "opentelemetry-exporter-otlp-proto-grpc==1.27.0", + "protobuf<5", "attrs", }, # Same as ingestion container. For development. "amundsen": {VERSIONS["neo4j"]},