Skip to content

Commit 0248aae

Browse files
committed
global: default to building cpython-3.11
The .4 release is out and 3.11 is pretty stable. It is time to make it the default.
1 parent e3b5913 commit 0248aae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cpython-unix/build-main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def main():
6262
parser.add_argument(
6363
"--python",
6464
choices={"cpython-3.8", "cpython-3.9", "cpython-3.10", "cpython-3.11"},
65-
default="cpython-3.10",
65+
default="cpython-3.11",
6666
help="Python distribution to build",
6767
)
6868
parser.add_argument(

cpython-windows/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2608,7 +2608,7 @@ def main():
26082608
parser.add_argument(
26092609
"--python",
26102610
choices={"cpython-3.8", "cpython-3.9", "cpython-3.10", "cpython-3.11"},
2611-
default="cpython-3.10",
2611+
default="cpython-3.11",
26122612
help="Python distribution to build",
26132613
)
26142614
parser.add_argument(

0 commit comments

Comments
 (0)