From 24992c1e8463f79387c702a24973ac7d1e692c24 Mon Sep 17 00:00:00 2001 From: Gregory Szorc Date: Tue, 18 Jul 2023 18:39:19 -0700 Subject: [PATCH] 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. --- cpython-unix/build-main.py | 2 +- cpython-windows/build.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cpython-unix/build-main.py b/cpython-unix/build-main.py index 2eb3f8c8..e6bcc036 100755 --- a/cpython-unix/build-main.py +++ b/cpython-unix/build-main.py @@ -62,7 +62,7 @@ def main(): parser.add_argument( "--python", choices={"cpython-3.8", "cpython-3.9", "cpython-3.10", "cpython-3.11"}, - default="cpython-3.10", + default="cpython-3.11", help="Python distribution to build", ) parser.add_argument( diff --git a/cpython-windows/build.py b/cpython-windows/build.py index cc712070..7cd99bdd 100644 --- a/cpython-windows/build.py +++ b/cpython-windows/build.py @@ -2608,7 +2608,7 @@ def main(): parser.add_argument( "--python", choices={"cpython-3.8", "cpython-3.9", "cpython-3.10", "cpython-3.11"}, - default="cpython-3.10", + default="cpython-3.11", help="Python distribution to build", ) parser.add_argument(