diff --git a/providers/http/pyproject.toml b/providers/http/pyproject.toml index 42d4d71ed873c..cdb4e3a23024c 100644 --- a/providers/http/pyproject.toml +++ b/providers/http/pyproject.toml @@ -59,7 +59,7 @@ requires-python = ">=3.10" # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ "apache-airflow>=2.11.0", - "apache-airflow-providers-common-compat>=1.10.1", + "apache-airflow-providers-common-compat>=1.10.1", # use next version # The 2.26.0 release of requests got rid of the chardet LGPL mandatory dependency, allowing us to # release it as a requirement for airflow "requests>=2.32.0,<3", diff --git a/providers/http/src/airflow/providers/http/operators/http.py b/providers/http/src/airflow/providers/http/operators/http.py index 5eeb8f14d3caa..d349b4228a11a 100644 --- a/providers/http/src/airflow/providers/http/operators/http.py +++ b/providers/http/src/airflow/providers/http/operators/http.py @@ -25,8 +25,7 @@ from aiohttp import BasicAuth from requests import Response -from airflow.configuration import conf -from airflow.providers.common.compat.sdk import AirflowException, BaseHook, BaseOperator +from airflow.providers.common.compat.sdk import AirflowException, BaseHook, BaseOperator, conf from airflow.providers.http.triggers.http import HttpTrigger, serialize_auth_type from airflow.utils.helpers import merge_dicts diff --git a/providers/http/src/airflow/providers/http/sensors/http.py b/providers/http/src/airflow/providers/http/sensors/http.py index 2c30f600d3ee3..df627cab26004 100644 --- a/providers/http/src/airflow/providers/http/sensors/http.py +++ b/providers/http/src/airflow/providers/http/sensors/http.py @@ -21,8 +21,7 @@ from datetime import timedelta from typing import TYPE_CHECKING, Any -from airflow.configuration import conf -from airflow.providers.common.compat.sdk import AirflowException, BaseSensorOperator +from airflow.providers.common.compat.sdk import AirflowException, BaseSensorOperator, conf from airflow.providers.http.hooks.http import HttpHook from airflow.providers.http.triggers.http import HttpSensorTrigger