From db1469023bab6192cd1e76386822000bff2b2bc9 Mon Sep 17 00:00:00 2001 From: Taka Date: Tue, 22 Jun 2021 03:32:36 +1000 Subject: [PATCH] Updated to a newer version of Flask-SQLAlchemy. --- requirements.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b792703..e4fa01b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,11 @@ # python 3.8.7 flask==1.1.2 -flask-sqlalchemy==2.4.4 +# NOTE: Newer versions of SQLAlchemy contain a change that breaks Flask-SQLALchemy :-/ +# https://stackoverflow.com/a/66652728 +# This wasn't a problem on vm-linux-dev, but manifested itself on the rPi4 (probably because +# the virtualenv on vm-linux-dev was built before this became a problem). +flask-sqlalchemy==2.5.1 psycopg2-binary==2.8.6 alembic==1.4.3 pyyaml==5.3.1