From 94216bf1b90c12044e1248c87fc2eeafc64fb996 Mon Sep 17 00:00:00 2001 From: Robin Huang Date: Fri, 27 Dec 2024 17:40:36 -0800 Subject: [PATCH] Use latest python 3.12 as default. (#570) --- src/virtualEnvironment.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/virtualEnvironment.ts b/src/virtualEnvironment.ts index 1da1cd16..adf8145f 100644 --- a/src/virtualEnvironment.ts +++ b/src/virtualEnvironment.ts @@ -50,7 +50,7 @@ export class VirtualEnvironment { return this.uvPty; } - constructor(venvPath: string, selectedDevice: TorchDeviceType | undefined, pythonVersion: string = '3.12.4') { + constructor(venvPath: string, selectedDevice: TorchDeviceType | undefined, pythonVersion: string = '3.12.8') { this.venvRootPath = venvPath; this.pythonVersion = pythonVersion; this.selectedDevice = selectedDevice;