This is an automated email from the ASF dual-hosted git repository.

jscheffl pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 463d51c885c Fix broken main after pydantic 2.12.0 (#56483)
463d51c885c is described below

commit 463d51c885c010d3650d36be481d3135aed07b15
Author: Jens Scheffler <[email protected]>
AuthorDate: Wed Oct 8 21:07:48 2025 +0200

    Fix broken main after pydantic 2.12.0 (#56483)
    
    * Fix broken main after pydantic 2.12.0
    
    * Fix broken main after pydantic 2.12.0
---
 airflow-ctl/pyproject.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow-ctl/pyproject.toml b/airflow-ctl/pyproject.toml
index 611ca1cf09b..cfd95a458c5 100644
--- a/airflow-ctl/pyproject.toml
+++ b/airflow-ctl/pyproject.toml
@@ -33,7 +33,7 @@ dependencies = [
     "lazy-object-proxy>=1.2.0",
     "methodtools>=0.4.7",
     "platformdirs>=4.3.6",
-    "pydantic>=2.11.0",
+    "pydantic>=2.11.0,!=2.12.0", # 
https://github.com/apache/airflow/issues/56482
     "rich-argparse>=1.0.0",
     "structlog>=25.2.0",
     "uuid6>=2024.7.10",

Reply via email to