From 8b052bde18da47d26769b4c1786e07177ecb5bd2 Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Mon, 9 Dec 2024 15:48:23 +0000 Subject: [PATCH] Attempt to solve databricks dependency issue --- scripts/test/integration-setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/test/integration-setup.sh b/scripts/test/integration-setup.sh index fec9e95eb..7eca073c4 100644 --- a/scripts/test/integration-setup.sh +++ b/scripts/test/integration-setup.sh @@ -6,9 +6,9 @@ set -e # we install using the following workaround to overcome installation conflicts, such as: # apache-airflow 2.3.0 and dbt-core [0.13.0 - 1.5.2] and jinja2>=3.0.0 because these package versions have conflicting dependencies -pip uninstall -y dbt-postgres dbt-databricks dbt-vertica +pip uninstall -y 'dbt-bigquery' 'dbt-databricks' 'dbt-postgres' 'dbt-vertica' 'dbt-core' rm -rf airflow.* pip freeze | grep airflow airflow db reset -y airflow db init -pip install 'dbt-core' 'dbt-bigquery' 'dbt-databricks' 'dbt-postgres' 'dbt-vertica' 'openlineage-airflow' +pip install 'dbt-databricks' 'dbt-bigquery' 'dbt-postgres' 'dbt-vertica' 'openlineage-airflow'