Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions airflow-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ dependencies = [
"rich-argparse>=1.0.0",
"rich>=13.6.0",
"setproctitle>=1.3.3",
# The issue tracking deprecations for sqlalchemy 2 is https://github.com/apache/airflow/issues/28723
"sqlalchemy[asyncio]>=1.4.49",
# SQLAlchemy >=2.0.36 fixes Python 3.13 TypingOnly import AssertionError caused by new typing attributes (__static_attributes__, __firstlineno__)
"sqlalchemy[asyncio]>=2.0.36",
"sqlalchemy-jsonfield>=1.0",
"sqlalchemy-utils>=0.41.2",
"svcs>=25.1.0",
Expand Down
3 changes: 0 additions & 3 deletions providers/fab/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,9 @@ dependencies = [
# In particular, make sure any breaking changes, for example any new methods, are accounted for.
"flask-appbuilder==5.0.1; python_version < '3.13'",
"flask-login>=0.6.2; python_version < '3.13'",
# Flask-Session 0.6 add new arguments into the SqlAlchemySessionInterface constructor as well as
# all parameters now are mandatory which make AirflowDatabaseSessionInterface incompatible with this version.
"flask-session>=0.8.0; python_version < '3.13'",
"msgpack>=1.0.0; python_version < '3.13'",
"flask-sqlalchemy>=3.0.5; python_version < '3.13'",
"sqlalchemy>=1.4.36,<2; python_version < '3.13'",
"flask-wtf>=1.1.0; python_version < '3.13'",
"connexion[flask]>=2.14.2,<3.0; python_version < '3.13'",
"jmespath>=0.7.0; python_version < '3.13'",
Expand Down
Loading