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

kaxilnaik pushed a commit to branch v3-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 016350901d04779aac980ac0edbf56285d38989f
Author: Daniel Standish <[email protected]>
AuthorDate: Tue Apr 22 13:27:45 2025 -0700

    Ensure sqlalchemy[asyncio] extra is in core deps (#49452)
    
    This is required for async sqlalchemy operations.  This surfaces e.g. when 
we install with `--no-dev` and run the api-server, we'll get missing module 
`greenlet` error in api-server logs.
    
    (cherry picked from commit 0c30c6e9885a48558a1aa87c73ab12097f758fda)
---
 airflow-core/pyproject.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow-core/pyproject.toml b/airflow-core/pyproject.toml
index d1b1e38fc9a..1cf72c33e5b 100644
--- a/airflow-core/pyproject.toml
+++ b/airflow-core/pyproject.toml
@@ -124,7 +124,7 @@ dependencies = [
     # See https://sqlalche.me/e/b8d9 for details of deprecated features
     # you can set environment variable SQLALCHEMY_WARN_20=1 to show all 
deprecation warnings.
     # The issue tracking it is https://github.com/apache/airflow/issues/28723
-    "sqlalchemy>=1.4.49,<2.0",
+    "sqlalchemy[asyncio]>=1.4.49,<2.0",
     "sqlalchemy-jsonfield>=1.0",
     "sqlalchemy-utils>=0.41.2",
     "svcs>=25.1.0",

Reply via email to