Relenv now produces Python 3.10.11

This commit is contained in:
MKLeb 2023-04-26 09:18:10 -04:00 committed by Pedro Algarvio
parent ae9f9d379b
commit 8fce8ca476
2 changed files with 4 additions and 4 deletions

View file

@ -40,7 +40,7 @@ param(
[ValidatePattern("^\d{1,2}.\d{1,2}.\d{1,2}$")]
[ValidateSet(
"3.11.2",
"3.10.10"
"3.10.11"
)]
[Alias("p")]
# The version of Python to be built. Pythonnet only supports up to Python
@ -48,7 +48,7 @@ param(
# 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.16
[String] $PythonVersion = "3.10.10",
[String] $PythonVersion = "3.10.11",
[Parameter(Mandatory=$false)]
[Alias("b")]

View file

@ -19,7 +19,7 @@ param(
[ValidatePattern("^\d{1,2}.\d{1,2}.\d{1,2}$")]
[ValidateSet(
"3.11.2",
"3.10.10"
"3.10.11"
)]
[Alias("v")]
# The version of Python to be built. Pythonnet only supports up to Python
@ -27,7 +27,7 @@ param(
# 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.16
[String] $Version = "3.10.10",
[String] $Version = "3.10.11",
[Parameter(Mandatory=$false)]
[ValidateSet("x64", "x86", "amd64")]