This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 54a753357f2 [v3-1-test] Fix startup issue with `breeze start-airflow`
command for airflow 2 due to dependencies (#58606) (#58609)
54a753357f2 is described below
commit 54a753357f216420e1d5d415658668c8252aab78
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Nov 24 09:56:10 2025 +0100
[v3-1-test] Fix startup issue with `breeze start-airflow` command for
airflow 2 due to dependencies (#58606) (#58609)
* Fix dependencies issue with start-airflow 2
* Fix code review comment
(cherry picked from commit 50c68f6e7be7502ca1ac8939cca38f223142831c)
Co-authored-by: LIU ZHE YOU <[email protected]>
---
scripts/in_container/install_airflow_and_providers.py | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/scripts/in_container/install_airflow_and_providers.py
b/scripts/in_container/install_airflow_and_providers.py
index e8b77ad1b1e..f34834b77ea 100755
--- a/scripts/in_container/install_airflow_and_providers.py
+++ b/scripts/in_container/install_airflow_and_providers.py
@@ -1004,6 +1004,12 @@ def install_airflow_and_providers(
github_actions=github_actions,
check=False,
)
+ console.print("[bright_blue]Upgrading typing-extensions for
compatibility with pydantic_core")
+ run_command(
+ ["uv", "pip", "install", "--upgrade", "--no-deps",
"typing-extensions>=4.15.0"],
+ github_actions=github_actions,
+ check=False,
+ )
console.print("[yellow]Uninstalling Airflow-3 only providers")
console.print(
"[yellow]Patching airflow 2 __init__.py -> replacing `from
future`"