From 7b488a9c40bf4f98c800e010ed61031b466e19e8 Mon Sep 17 00:00:00 2001 From: Kartik Raj Date: Thu, 23 Feb 2023 14:53:05 -0800 Subject: [PATCH] Point to Python v3.11 instead of Python v3.10 when opening windows store (#20742) Closes https://github.com/microsoft/vscode-python/issues/20736 --- .../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; } }