From 31b743a97f400a9e5a08720e84c03f4917c0257e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=A4fer?= Date: Mon, 24 Oct 2022 10:14:03 +0200 Subject: [PATCH] Update WTForms and pin quart version The quart pin is required to fix an attribute error which otherwise occurs during startup. Hence, this should be a good qualifier to know when it's safe to upgrade. Note that this is not a problem in Quart, but in flask-WTForms. But downgrading flask-wtforms does not help [1], so we don't revert that uprade. ``` AttributeError: module 'quart.json' has no attribute 'JSONEncoder' ``` [1]: https://github.com/pallets/quart/issues/163 --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index c1dfa3e..8be043d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ aiohttp~=3.6 -quart~=0.17 -flask-wtf~=0.14 +quart~=0.17,<0.18 +flask-wtf~=1.0 hsluv~=5.0 flask-babel~=1.0 email-validator~=1.1