Skip to content

Commit

Permalink
global: default to building cpython-3.11
Browse files Browse the repository at this point in the history
The .4 release is out and 3.11 is pretty stable. It is time to
make it the default.
  • Loading branch information
indygreg committed Jul 19, 2023
1 parent 547a63d commit 24992c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cpython-unix/build-main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion cpython-windows/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 24992c1

Please sign in to comment.