Skip to content

Commit df5b356

Browse files
authored
Merge pull request #83929 from charles-zablit/charles-zablit/windows/update-to-3.10.1
🍒 [windows] upgrade to Python 3.10.1
2 parents 6e34c90 + caec84c commit df5b356

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

utils/build.ps1

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ param
139139
[ValidateSet("Asserts", "NoAsserts")]
140140
[string] $PinnedToolchainVariant = "Asserts",
141141
[ValidatePattern('^\d+(\.\d+)*$')]
142-
[string] $PythonVersion = "3.9.10",
142+
[string] $PythonVersion = "3.10.1",
143143
[ValidatePattern("^r(?:[1-9]|[1-9][0-9])(?:[a-z])?$")]
144144
[string] $AndroidNDKVersion = "r27c",
145145
[ValidatePattern("^\d+\.\d+\.\d+(?:-\w+)?")]
@@ -348,7 +348,17 @@ $KnownPythons = @{
348348
URL = "https://www.nuget.org/api/v2/package/pythonarm64/3.9.10";
349349
SHA256 = "429ada77e7f30e4bd8ff22953a1f35f98b2728e84c9b1d006712561785641f69";
350350
};
351-
}
351+
};
352+
"3.10.1" = @{
353+
AMD64 = @{
354+
URL = "https://www.nuget.org/api/v2/package/python/3.10.1";
355+
SHA256 = "987a0e446d68900f58297bc47dc7a235ee4640a49dace58bc9f573797d3a8b33";
356+
};
357+
ARM64 = @{
358+
URL = "https://www.nuget.org/api/v2/package/pythonarm64/3.10.1";
359+
SHA256 = "16becfccedf1269ff0b8695a13c64fac2102a524d66cecf69a8f9229a43b10d3";
360+
};
361+
};
352362
}
353363

354364
$PythonWheels = @{

0 commit comments

Comments
 (0)