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

eladkal 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 e448734aec2 Adjust column length for constraints_version_check (#64403)
e448734aec2 is described below

commit e448734aec2b9d73c764a1d58733f5448b7a13e6
Author: Elad Kalif <[email protected]>
AuthorDate: Sun Mar 29 14:40:55 2026 +0300

    Adjust column length for constraints_version_check (#64403)
---
 dev/breeze/src/airflow_breeze/utils/constraints_version_check.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev/breeze/src/airflow_breeze/utils/constraints_version_check.py 
b/dev/breeze/src/airflow_breeze/utils/constraints_version_check.py
index 394d1a9b781..aea56854f85 100755
--- a/dev/breeze/src/airflow_breeze/utils/constraints_version_check.py
+++ b/dev/breeze/src/airflow_breeze/utils/constraints_version_check.py
@@ -107,7 +107,7 @@ def get_status_emoji(constraint_date, latest_date, 
is_latest_version):
     Returns a tuple of (formatted_status_string, status_category) where 
status_category
     is one of "ok", "new", "warning", "critical".
     """
-    col_target = 16
+    col_target = 11
     if is_latest_version:
         return "✅ OK".ljust(col_target), "ok"
 
@@ -290,7 +290,7 @@ def get_table_format(packages: list[tuple[str, str]]):
         "Constraint Date": 15,
         "Latest Version": 15,
         "Latest Date": 12,
-        "📢 Status": 17,
+        "📢 Status": 12,
         "# Days Stale": 12,
         "# Versions Behind": 19,
         "PyPI Link": 60,

Reply via email to