Skip to content
Merged
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
6 changes: 5 additions & 1 deletion airflow-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,11 @@ dependencies = [
"a2wsgi>=1.10.8",
# 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",
# It seems that while our test issues are fixed in 0.22.1, sqlalchemy 2 itself
# is not compatible with it and leaves thread hanging This is already fixed in main of sqlalchemy
# But not released yet - and we will likely have to add >=2.0.46+ for sqlalchemy when released to
# protect against it https://github.com/sqlalchemy/sqlalchemy/issues/13039
"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
Expand Down
Loading