This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v3-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-0-test by this push:
new 9ba6998827e [v3-0-test] Fix typoed parameter passign in calling a
method in dev report (#52659) (#52661)
9ba6998827e is described below
commit 9ba6998827ed1972de05a539de16021c50fc780f
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Jul 1 20:20:28 2025 +0200
[v3-0-test] Fix typoed parameter passign in calling a method in dev report
(#52659) (#52661)
Caused lack of "explain-why" summary in the reports.
(cherry picked from commit 81b804fa4dd8a3d2c7abcea481f80ae92045a01d)
Co-authored-by: Jarek Potiuk <[email protected]>
---
dev/constraints-updated-version-check.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev/constraints-updated-version-check.py
b/dev/constraints-updated-version-check.py
index 52476f26e9a..02f02936735 100755
--- a/dev/constraints-updated-version-check.py
+++ b/dev/constraints-updated-version-check.py
@@ -489,7 +489,7 @@ def explain_package_upgrade(
cwd=repo_root,
)
(temp_dir_path / "uv_sync_before.txt").write_text(before_result.stdout
+ before_result.stderr)
- update_pyproject_dependency(airflow_pyproject, pkg, latest_version,
airflow_constraints_mode)
+ update_pyproject_dependency(airflow_pyproject, pkg, latest_version)
if verbose:
syntax = Syntax(
airflow_pyproject.read_text(), "toml", theme="monokai",
line_numbers=True, word_wrap=False