Commit f17cb9d
committed
Restrict SQLAlchemy to 1.3
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.1 parent bc8d9d5 commit f17cb9d
1 file changed
+1
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
20 | 19 | | |
21 | | - | |
| 20 | + | |
22 | 21 | | |
23 | 22 | | |
24 | 23 | | |
| |||
0 commit comments