Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion providers/imap/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
]

[dependency-groups]
Expand Down
2 changes: 1 addition & 1 deletion providers/imap/src/airflow/providers/imap/hooks/imap.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def _build_client(self, conn: Connection) -> imaplib.IMAP4_SSL | imaplib.IMAP4:
host = conn.host or ""
use_ssl = conn.extra_dejson.get("use_ssl", True)
if use_ssl:
from airflow.configuration import conf
from airflow.providers.common.compat.sdk import conf

extra_ssl_context = conn.extra_dejson.get("ssl_context", None)
if extra_ssl_context:
Expand Down