Skip to content

Commit

Permalink
Add minimum requirement for sqlalchemy to 1.4.24 (#33892)
Browse files Browse the repository at this point in the history
Some of the recent sqlalchemy 2 changes used features tha were
added in 1.4.24 sqlalchemy (session.scalar).

We need to bump the minimum version to avoid accidental problems
with people upgrading and not bumping sqlalchemy nor using
constraints

Fixes: #33887
  • Loading branch information
potiuk authored Aug 29, 2023
1 parent fe27031 commit bfab7da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ install_requires =
# 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,<2.0
sqlalchemy>=1.4.24,<2.0
sqlalchemy_jsonfield>=1.0
tabulate>=0.7.5
tenacity>=6.2.0,!=8.2.0
Expand Down

0 comments on commit bfab7da

Please sign in to comment.