From 9c9f24a2f25385766c5d2cedb40c1478c14249e4 Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Mon, 29 Apr 2024 10:28:54 -0700 Subject: [PATCH] Bump `Flask` to `>=2.3.0` Now that we've dropped support for Python `3.7`, it probably makes sense to also bump our minimum version of Flask to `2.3.0`, as that is when Flask dropped support for Python `3.7`: https://flask.palletsprojects.com/en/3.0.x/changes/#version-2-3-0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cde0b9b..28872bc 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup setup( name="Flask-DebugToolbar", install_requires=[ - 'Flask>=2.2.0', + 'Flask>=2.3.0', 'itsdangerous', 'werkzeug', 'MarkupSafe',