From: Anthony Sottile Date: Sun, 25 Apr 2021 16:09:24 +0000 (-0700) Subject: Set the release for `__future__.annotations` to 3.11 (#25596) X-Git-Tag: v3.10.0b1~167 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c9c27b8004f7a5dd214bb2608c3f5e2bbfec33ac;p=thirdparty%2FPython%2Fcpython.git Set the release for `__future__.annotations` to 3.11 (#25596) --- diff --git a/Lib/__future__.py b/Lib/__future__.py index 326e2b24d1d0..97dc90c6e464 100644 --- a/Lib/__future__.py +++ b/Lib/__future__.py @@ -143,5 +143,5 @@ generator_stop = _Feature((3, 5, 0, "beta", 1), CO_FUTURE_GENERATOR_STOP) annotations = _Feature((3, 7, 0, "beta", 1), - (3, 10, 0, "alpha", 0), + (3, 11, 0, "alpha", 0), CO_FUTURE_ANNOTATIONS)