From 7d2cb47d0483aa567088310468fa258e7f9cd0f8 Mon Sep 17 00:00:00 2001 From: Kartik Raj Date: Thu, 23 Feb 2023 14:15:47 -0800 Subject: [PATCH] Point to Python3.11 in windows store instead of Python3.10 --- .../interpreterSelector/commands/installPython/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/interpreter/configuration/interpreterSelector/commands/installPython/index.ts b/src/client/interpreter/configuration/interpreterSelector/commands/installPython/index.ts index fef63a49e6d2..d6d423c1eab8 100644 --- a/src/client/interpreter/configuration/interpreterSelector/commands/installPython/index.ts +++ b/src/client/interpreter/configuration/interpreterSelector/commands/installPython/index.ts @@ -34,7 +34,7 @@ export class InstallPythonCommand implements IExtensionSingleActivationService { if (version.major > 8) { // OS is not Windows 8, ms-windows-store URIs are available: // https://docs.microsoft.com/en-us/windows/uwp/launch-resume/launch-store-app - this.browserService.launch('ms-windows-store://pdp/?ProductId=9PJPW5LDXLZ5'); + this.browserService.launch('ms-windows-store://pdp/?ProductId=9NRWMJP3717K'); return; } }