summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2021-04-25 16:09:24 (GMT)
committerGitHub <noreply@github.com>2021-04-25 16:09:24 (GMT)
commitc9c27b8004f7a5dd214bb2608c3f5e2bbfec33ac (patch)
treedf7d17220493e454bd1a9fe35f3330fd798804cd
parent8af929fc76f21fb123f6a47cb3ebcf4e5b758dea (diff)
downloadcpython-c9c27b8004f7a5dd214bb2608c3f5e2bbfec33ac.zip
cpython-c9c27b8004f7a5dd214bb2608c3f5e2bbfec33ac.tar.gz
cpython-c9c27b8004f7a5dd214bb2608c3f5e2bbfec33ac.tar.bz2
Set the release for `__future__.annotations` to 3.11 (#25596)
-rw-r--r--Lib/__future__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/__future__.py b/Lib/__future__.py
index 326e2b2..97dc90c 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)