Update python to 3.8.16

This commit is contained in:
Twangboy 2022-12-09 13:29:08 -07:00 committed by Megan Wilhite
parent c94d7a55a4
commit 224fa1ed7a
2 changed files with 8 additions and 5 deletions

View file

@ -46,6 +46,8 @@ param(
#"3.9.13",
#"3.9.12",
#"3.9.11",
"3.8.16",
"3.8.15",
"3.8.14",
"3.8.13",
"3.8.12",
@ -57,8 +59,8 @@ param(
# 3.8 for now. Pycurl stopped building wheel files after 7.43.0.5 which
# supported up to 3.8. So we're pinned to the latest version of Python 3.8.
# We may have to drop support for pycurl.
# Default is: 3.8.14
[String] $PythonVersion = "3.8.14",
# Default is: 3.8.16
[String] $PythonVersion = "3.8.16",
[Parameter(Mandatory=$false)]
[Alias("b")]

View file

@ -11,7 +11,7 @@ as created by the Python installer. This includes all header files, scripts,
dlls, library files, and pip.
.EXAMPLE
build_python.ps1 -Version 3.8.14 -Architecture x86
build_python.ps1 -Version 3.8.16 -Architecture x86
#>
param(
@ -24,6 +24,7 @@ param(
#"3.9.13",
#"3.9.12",
#"3.9.11",
"3.8.16",
"3.8.15",
"3.8.14",
"3.8.13",
@ -36,8 +37,8 @@ param(
# 3.8 for now. Pycurl stopped building wheel files after 7.43.0.5 which
# supported up to 3.8. So we're pinned to the latest version of Python 3.8.
# We may have to drop support for pycurl or build it ourselves.
# Default is: 3.8.15
[String] $Version = "3.8.15",
# Default is: 3.8.16
[String] $Version = "3.8.16",
[Parameter(Mandatory=$false)]
[ValidateSet("x64", "x86")]