We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 006ab93 commit 693e175Copy full SHA for 693e175
1 file changed
providers/sendgrid/pyproject.toml
@@ -58,7 +58,10 @@ requires-python = "~=3.9"
58
# After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build``
59
dependencies = [
60
"apache-airflow>=2.10.0",
61
- "sendgrid>=6.12.3",
+ # workaround conflicts with fab for Python 3.12 https://github.com/apache/airflow/pull/50221#issuecomment-2926765112
62
+ # can be set to sendgrid>=6.12.3 when we upgrade to fab 5
63
+ "sendgrid>=6.12.3; python_version < '3.12'",
64
+ "sendgrid<6.12.3; python_version >= '3.12'"
65
]
66
67
[dependency-groups]
0 commit comments