Skip to content

Commit

Permalink
Bump min version of Alembic to 1.13.1 (#36928)
Browse files Browse the repository at this point in the history
There are some errors for users who still use sqlalchemy 1, where
Alembic 1.13.0 wrongly marks some migration as SqlAlchemy 2+

Fixes: #36912
(cherry picked from commit 74baebe)
  • Loading branch information
potiuk authored and ephraimbuddy committed Feb 22, 2024
1 parent 67eaa41 commit 4a8fc18
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ classifiers = [
dependencies = [
# 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
"alembic>=1.6.3, <2.0",
# The 1.13.0 of alembic marked some migration code as SQLAlchemy 2+ only so we limit it to 1.13.1
"alembic>=1.13.1, <2.0",
"argcomplete>=1.10",
"asgiref",
"attrs>=22.1.0",
Expand Down

0 comments on commit 4a8fc18

Please sign in to comment.