Skip to content

Commit

Permalink
Add minimum requirement for sqlalchemy to 1.4.24
Browse files Browse the repository at this point in the history
Some of the recent sqlalchemy 2 changes used features that were
added in 1.4.24 sqlalchemy (session.scalar) [1]. This change fixes the
issue with gnocchi-upgrade built with wrong constraints.

1. https://docs.sqlalchemy.org/en/20/changelog/changelog_14.html#change-e619b9bd2796d7e0b948631fac5b01e9

(cherry picked from commit 680ac01)
  • Loading branch information
LazyMan145 committed Oct 25, 2023
1 parent 46afa67 commit e2beb2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ keystone =
mysql =
pymysql
oslo.db>=4.29.0
sqlalchemy<2
sqlalchemy>=1.4.24,<2
sqlalchemy-utils
alembic>=0.7.6,!=0.8.1,!=0.9.0
postgresql =
psycopg2
oslo.db>=4.29.0
sqlalchemy<2
sqlalchemy>=1.4.24,<2
sqlalchemy-utils
alembic>=0.7.6,!=0.8.1,!=0.9.0
s3 =
Expand Down

0 comments on commit e2beb2f

Please sign in to comment.