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

potiuk pushed a commit to branch new-providers-layout-2025-12
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit c58e42f570f6f173f769b554e4f9c7a7cd4a9216
Author: Jens Scheffler <[email protected]>
AuthorDate: Sat Dec 27 22:19:29 2025 +0100

    Exclude FastAPI 0.128.0 (#59856)
    
    (cherry picked from commit 8d2e62329561376aab2ac4094d1115a7ddd23e16)
---
 airflow-core/pyproject.toml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/airflow-core/pyproject.toml b/airflow-core/pyproject.toml
index 8a91dbf7f2d..3e0b238d643 100644
--- a/airflow-core/pyproject.toml
+++ b/airflow-core/pyproject.toml
@@ -67,7 +67,9 @@ version = "3.2.0"
 
 dependencies = [
     "a2wsgi>=1.10.8",
-    "aiosqlite>=0.20.0",
+    # aiosqlite 0.22.0 has a problem with hanging pytest sessions and we 
excluded it
+    # See https://github.com/omnilib/aiosqlite/issues/369
+    "aiosqlite>=0.20.0,!=0.22.0",
     # Alembic is important to handle our migrations in predictable and 
performant way. It is developed
     # together with SQLAlchemy. Our experience with Alembic is that it very 
stable in minor version
     # The 1.13.0 of alembic marked some migration code as SQLAlchemy 2+ only 
so we limit it to 1.13.1
@@ -75,7 +77,7 @@ dependencies = [
     "argcomplete>=1.10",
     "asgiref>=2.3.0",
     "attrs>=22.1.0, !=25.2.0",
-    "cadwyn>=5.6.1",
+    "cadwyn>=5.6.2",
     "colorlog>=6.8.2",
     "cron-descriptor>=1.2.24",
     "croniter>=2.0.2",

Reply via email to