File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/airflow/providers/dbt/cloud Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ requires-python = ">=3.10"
5959# After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build``
6060dependencies = [
6161 " apache-airflow>=2.11.0" ,
62- " apache-airflow-providers-common-compat>=1.10.1" ,
62+ " apache-airflow-providers-common-compat>=1.10.1" , # use next version
6363 " apache-airflow-providers-http" ,
6464 " asgiref>=2.3.0" ,
6565 " aiohttp>=3.9.2" ,
Original file line number Diff line number Diff line change 2323from pathlib import Path
2424from typing import TYPE_CHECKING , Any
2525
26- from airflow .configuration import conf
26+ from airflow .providers . common . compat . sdk import conf
2727from airflow .providers .common .compat .sdk import BaseOperator , BaseOperatorLink , XCom
2828from airflow .providers .dbt .cloud .hooks .dbt import (
2929 DbtCloudHook ,
Original file line number Diff line number Diff line change 2020from functools import cached_property
2121from typing import TYPE_CHECKING , Any
2222
23- from airflow .configuration import conf
23+ from airflow .providers . common . compat . sdk import conf
2424from airflow .providers .common .compat .sdk import AirflowException , BaseSensorOperator
2525from airflow .providers .dbt .cloud .hooks .dbt import DbtCloudHook , DbtCloudJobRunException , DbtCloudJobRunStatus
2626from airflow .providers .dbt .cloud .triggers .dbt import DbtCloudRunJobTrigger
You can’t perform that action at this time.
0 commit comments