Skip to content

Commit a6cf446

Browse files
committed
build: default to build CPython 3.10
This is a reasonable default at this point in time.
1 parent 331473c commit a6cf446

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"},
65-
default="cpython-3.9",
65+
default="cpython-3.10",
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
@@ -2466,7 +2466,7 @@ def main():
24662466
parser.add_argument(
24672467
"--python",
24682468
choices={"cpython-3.8", "cpython-3.9", "cpython-3.10"},
2469-
default="cpython-3.9",
2469+
default="cpython-3.10",
24702470
help="Python distribution to build",
24712471
)
24722472
parser.add_argument(

0 commit comments

Comments
 (0)