From b394a994e6d632643d0061e0e67772f076925951 Mon Sep 17 00:00:00 2001 From: David Lord Date: Sat, 23 Nov 2024 16:03:47 -0800 Subject: [PATCH] update `__version__` deprecation --- src/flask/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flask/__init__.py b/src/flask/__init__.py index e86eb43e..7440aef1 100644 --- a/src/flask/__init__.py +++ b/src/flask/__init__.py @@ -50,7 +50,7 @@ def __getattr__(name: str) -> t.Any: warnings.warn( "The '__version__' attribute is deprecated and will be removed in" - " Flask 3.1. Use feature detection or" + " Flask 3.2. Use feature detection or" " 'importlib.metadata.version(\"flask\")' instead.", DeprecationWarning, stacklevel=2,