This is an automated email from the ASF dual-hosted git repository.
amoghdesai 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 5dd046d9acd Restrict typing-extensions 4.14.0 to fix CI temporarily
(#51311)
5dd046d9acd is described below
commit 5dd046d9acdda87be94695ae97bc5286f2ae81dd
Author: Amogh Desai <[email protected]>
AuthorDate: Mon Jun 2 21:41:58 2025 +0530
Restrict typing-extensions 4.14.0 to fix CI temporarily (#51311)
---
airflow-core/pyproject.toml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/airflow-core/pyproject.toml b/airflow-core/pyproject.toml
index 25cdebd5f17..c88dbd03677 100644
--- a/airflow-core/pyproject.toml
+++ b/airflow-core/pyproject.toml
@@ -131,6 +131,8 @@ dependencies = [
"tabulate>=0.9.0",
"tenacity>=8.0.0,!=8.2.0",
"termcolor>=3.0.0",
+ # temporarily exclude 4.14.0 due to its broken compat with cadwyn
+ "typing-extensions!=4.14.0",
# Universal Pathlib 0.2.4 adds extra validation for Paths and our
integration with local file paths
# Does not work with it Tracked in
https://github.com/fsspec/universal_pathlib/issues/276
"universal-pathlib>=0.2.2,!=0.2.4",