From 0007f10e9085242636b5d3dcc96ca6f1bf212b08 Mon Sep 17 00:00:00 2001 From: Jens Scheffler Date: Sun, 1 Jun 2025 20:17:36 +0200 Subject: [PATCH] Add lower bound to Sendgrid after #50221 --- providers/sendgrid/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/sendgrid/pyproject.toml b/providers/sendgrid/pyproject.toml index b02d50baf44a6..0aa5db979ce34 100644 --- a/providers/sendgrid/pyproject.toml +++ b/providers/sendgrid/pyproject.toml @@ -61,7 +61,7 @@ dependencies = [ # workaround conflicts with fab for Python 3.12 https://github.com/apache/airflow/pull/50221#issuecomment-2926765112 # can be set to sendgrid>=6.12.3 when we upgrade to fab 5 "sendgrid>=6.12.3; python_version < '3.12'", - "sendgrid<6.12.3; python_version >= '3.12'" + "sendgrid>=6.0.0,<6.12.3; python_version >= '3.12'", ] [dependency-groups]