From b76da172652da94c1f9c4b2fdd965375da8a2c3f Mon Sep 17 00:00:00 2001 From: Baptiste Jonglez Date: Thu, 21 May 2020 23:10:28 +0200 Subject: [PATCH] Update Flask-WTF to 0.14.3 to fix python2 - python3 transition When updating I Hate Money from python2 to python3, any leftover cookie set from python2 causes the python3 version to crash when reading the cookie back. This is a bug/omission in Flask-WTF: https://github.com/lepture/flask-wtf/issues/275 It was fixed in 0.14.3 with: https://github.com/lepture/flask-wtf/commit/eff54eca0d0c070a32da8815f9efd5189add3f1e --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5a5a059e..4009608e 100644 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ setup(name='ihatemoney', "Flask-RESTful==0.3.7", "Flask-Script==2.0.6", "Flask-SQLAlchemy==2.4.0", - "Flask-WTF==0.14.2", + "Flask-WTF==0.14.3", "itsdangerous==1.1.0", "Jinja2==2.10.1", "six==1.14.0",