From: Ben Darnell Date: Fri, 7 Aug 2026 02:46:08 +0000 (-0400) Subject: auth: Accelerate removal of OpenIdMixin to Tornado 6.7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eff7ae6bac12e0473397d869405dd372575f602d;p=thirdparty%2Ftornado.git auth: Accelerate removal of OpenIdMixin to Tornado 6.7 --- diff --git a/tornado/auth.py b/tornado/auth.py index 3086ec08..707600f0 100644 --- a/tornado/auth.py +++ b/tornado/auth.py @@ -98,14 +98,14 @@ class OpenIdMixin: * ``_OPENID_ENDPOINT``: the identity provider's URI. - .. deprecated:: 6.6 + .. deprecated:: 6.5.8 OpenID 2.0 is no longer widely supported by identity providers. - This class will be removed in Tornado 7.0. + This class will be removed in Tornado 6.7. """ def __init__(self) -> None: warnings.warn( - "OpenIdMixin is deprecated and will be removed in Tornado 7.0", + "OpenIdMixin is deprecated and will be removed in Tornado 6.7", DeprecationWarning, stacklevel=2, )