diff --git a/pyproject.toml b/pyproject.toml index 6beb3db3e..cad6c3896 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,8 +44,10 @@ dbt-all = [ "dbt-athena", "dbt-bigquery", "dbt-clickhouse", - # TODO: https://github.com/astronomer/astronomer-cosmos/issues/1379 - "dbt-databricks<1.9", + # The dbt-databricks:1.9.0 version causes a dependency conflict with + # the Pydantic version required by Airflow (version > 2.7) + # See: https://github.com/astronomer/astronomer-cosmos/issues/1379 + "dbt-databricks!=1.9.0", "dbt-exasol", "dbt-postgres", "dbt-redshift", diff --git a/scripts/test/integration-setup.sh b/scripts/test/integration-setup.sh index 2bf0e563d..5c2ab3af8 100644 --- a/scripts/test/integration-setup.sh +++ b/scripts/test/integration-setup.sh @@ -11,4 +11,4 @@ rm -rf airflow.* pip freeze | grep airflow airflow db reset -y airflow db init -pip install 'dbt-databricks<1.9' 'dbt-bigquery' 'dbt-postgres' 'dbt-vertica' 'openlineage-airflow' +pip install 'dbt-databricks!=1.9.0' 'dbt-bigquery' 'dbt-postgres' 'dbt-vertica' 'openlineage-airflow'