You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
https://docs.sqlalchemy.org/en/14/changelog/migration_14.html
The previous SQLAlchemy version constraint in pyproject.toml,
`sqlalchemy = "^1.3.16"`, allowed SQLAlchemy 1.4 to be installed.
SQLAlchemy 1.4 includes many API changes, and should not be installed
until the back-end Python application logic has been updated.
This commit will update the version constraint to `sqlalchemy = "~1.3"`,
which allows further updates to SQLAlchemy 1.3, but not SQLAlchemy 1.4.
See https://semver.npmjs.com/ for a helpful demonstration of this.
This commit will also install `psycopg2` through SQLAlchemy for maximum
compatibility.
0 commit comments