From 0f89e0150a430fcee2a900def22afedbfa6a649d Mon Sep 17 00:00:00 2001 From: Pankaj Koti Date: Fri, 27 Dec 2024 14:51:16 +0530 Subject: [PATCH] Install providers with airflow (#1432) --- scripts/test/pre-install-airflow.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/test/pre-install-airflow.sh b/scripts/test/pre-install-airflow.sh index da8e72fe3..b9ee15eba 100755 --- a/scripts/test/pre-install-airflow.sh +++ b/scripts/test/pre-install-airflow.sh @@ -52,7 +52,7 @@ else # https://github.com/apache/airflow/pull/38102 and fixed in apache-airflow-providers-google==10.17.0. Consequently, # we are using apache-airflow-providers-google>=10.17.0 and skipping constraints installation, as the specified # version does not meet our requirements. - uv pip install "apache-airflow-providers-google>=10.17.0" + uv pip install "apache-airflow-providers-google>=10.17.0" "apache-airflow==$AIRFLOW_VERSION" # The Airflow 2.8 constraints file at # https://raw.githubusercontent.com/apache/airflow/constraints-2.8.0/constraints-3.11.txt @@ -60,7 +60,7 @@ else # previously led to authentication issues with this version. This issue got resolved in # apache-airflow-providers-microsoft-azure==8.5.0. Hence, we are using apache-airflow-providers-microsoft-azure>=8.5.0 # and skipping installation with constraints, as the specified version does not meet our requirements. - uv pip install "apache-airflow-providers-microsoft-azure>=8.5.0" + uv pip install "apache-airflow-providers-microsoft-azure>=8.5.0" "apache-airflow==$AIRFLOW_VERSION" fi rm /tmp/constraint.txt