where can I get information about compatible versions? #560
-
I'm struggling with legacy Python system and want to use Flask-Migrate for DB migration, but I can't find which version of Flask-Migrate would work with my other dependencies where can I find any information about it? I visited pip page only to find there is no badge like compatible versions information. My other dependency versions are like below
sry about this damn old python system.. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Flask 1.0.3 was released on 2019-05-17, so you need to look for a version that was current around that date. Looking at the change log I think you'd want to test the 2.4.x and 2.5.x releases. Give 2.4.0 and 2.5.3 a try and see if these work. The unfortunate problem is that this does not end with Flask-Migrate. You may also need to find an older version of Alembic if you continue to have issues after downgrading. And maybe other dependencies. For example, you are using SQLAlchemy 1.4.x, which is likely more recent than your project. |
Beta Was this translation helpful? Give feedback.
Flask 1.0.3 was released on 2019-05-17, so you need to look for a version that was current around that date.
Looking at the change log I think you'd want to test the 2.4.x and 2.5.x releases. Give 2.4.0 and 2.5.3 a try and see if these work. The unfortunate problem is that this does not end with Flask-Migrate. You may also need to find an older version of Alembic if you continue to have issues after downgrading. And maybe other dependencies. For example, you are using SQLAlchemy 1.4.x, which is likely more recent than your project.