Skip to content

Commit 7c5c94f

Browse files
Merge pull request #83615 from charles-zablit/charles-zablit/windows/update-to-3.10.1
[windows] upgrade to Python 3.10.1
2 parents 2c1dea9 + 3161a8b commit 7c5c94f

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
@@ -161,7 +161,7 @@ param
161161

162162
# Dependencies
163163
[ValidatePattern('^\d+(\.\d+)*$')]
164-
[string] $PythonVersion = "3.9.10",
164+
[string] $PythonVersion = "3.10.1",
165165

166166
# Toolchain Version Info
167167
[string] $ProductVersion = "0.0.0",
@@ -385,7 +385,17 @@ $KnownPythons = @{
385385
URL = "https://www.nuget.org/api/v2/package/pythonarm64/3.9.10";
386386
SHA256 = "429ada77e7f30e4bd8ff22953a1f35f98b2728e84c9b1d006712561785641f69";
387387
};
388-
}
388+
};
389+
"3.10.1" = @{
390+
AMD64 = @{
391+
URL = "https://www.nuget.org/api/v2/package/python/3.10.1";
392+
SHA256 = "987a0e446d68900f58297bc47dc7a235ee4640a49dace58bc9f573797d3a8b33";
393+
};
394+
ARM64 = @{
395+
URL = "https://www.nuget.org/api/v2/package/pythonarm64/3.10.1";
396+
SHA256 = "16becfccedf1269ff0b8695a13c64fac2102a524d66cecf69a8f9229a43b10d3";
397+
};
398+
};
389399
}
390400

391401
$PythonModules = @{

0 commit comments

Comments
 (0)