From 66cf003cc3ee01db5fa8fd173941dd5b3152f433 Mon Sep 17 00:00:00 2001 From: Mayur Singal <39544459+ulixius9@users.noreply.github.com> Date: Wed, 6 Nov 2024 19:28:48 +0530 Subject: [PATCH] MINOR: Fix pytest 3.11 taking 2hr (#18533) --- ingestion/setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ingestion/setup.py b/ingestion/setup.py index 454bf7a0753..f7970ffeca4 100644 --- a/ingestion/setup.py +++ b/ingestion/setup.py @@ -146,11 +146,10 @@ 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", + "opentelemetry-exporter-otlp==1.27.0", "protobuf<5", "attrs", + VERSIONS["airflow"], }, # Same as ingestion container. For development. "amundsen": {VERSIONS["neo4j"]}, "athena": {"pyathena~=3.0"}, @@ -344,6 +343,7 @@ dev = { test = { # Install Airflow as it's not part of `all` plugin + "opentelemetry-exporter-otlp==1.27.0", VERSIONS["airflow"], "boto3-stubs", "mypy-boto3-glue",