From 983ca570534fe44bae110b45ce183f2d370fa10e Mon Sep 17 00:00:00 2001 From: David Blain Date: Mon, 13 Oct 2025 14:48:59 +0000 Subject: [PATCH] [v3-1-test] Added missing babel dependency in Task SDK (#56553) After the [move of macros to the Task SDK](https://github.com/apache/airflow/pull/46867/files#diff-854d19db18bae58289f4ce996ca0fb34341bc0f22930620627afccbd9d6facfcL30), the babel dependency is missing. This is probably due to the fact that in the past, the babel dependency was available through the flask-babel dependency. This PR add the babel dependency to the Task SDK so that macro's depending on it can work again. (cherry picked from commit f96bb22d684d2d72ec9acb48a9e8b666d89f47a1) Co-authored-by: David Blain closes: https://github.com/apache/airflow/issues/56552 --- task-sdk/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/task-sdk/pyproject.toml b/task-sdk/pyproject.toml index 3a72c9315184e..5089ef2f5c9df 100644 --- a/task-sdk/pyproject.toml +++ b/task-sdk/pyproject.toml @@ -52,6 +52,7 @@ dependencies = [ "apache-airflow-core<3.2.0,>=3.1.1", "asgiref>=2.3.0", "attrs>=24.2.0, !=25.2.0", + "babel>=2.17.0", "fsspec>=2023.10.0", "httpx>=0.27.0", "jinja2>=3.1.5",