Skip to content

Commit b693928

Browse files
committed
Update Windows Python download to 3.13.7
Signed-off-by: paulober <[email protected]>
1 parent f80c4c2 commit b693928

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/extension.mts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,9 @@ export async function activate(context: ExtensionContext): Promise<void> {
311311

312312
return;
313313
}
314+
void window.showInformationMessage(
315+
"Zephyr Toolchain setup done. You can now build your project."
316+
);
314317

315318
await commands.executeCommand(
316319
"setContext",

src/utils/sharedConstants.mts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
export const WINDOWS_X86_PYTHON_DOWNLOAD_URL =
2-
"https://www.python.org/ftp/python/3.12.6/python-3.12.6-embed-amd64.zip";
2+
"https://www.python.org/ftp/python/3.13.7/python-3.13.7-embed-amd64.zip";
33
export const WINDOWS_ARM64_PYTHON_DOWNLOAD_URL =
4-
"https://www.python.org/ftp/python/3.12.6/python-3.12.6-embed-arm64.zip";
5-
export const CURRENT_PYTHON_VERSION = "3.12.6";
4+
"https://www.python.org/ftp/python/3.13.7/python-3.13.7-embed-arm64.zip";
5+
export const CURRENT_PYTHON_VERSION = "3.13.7";
66

77
export const CURRENT_DATA_VERSION = "0.18.0";
88
export const OPENOCD_VERSION = "0.12.0+dev";

0 commit comments

Comments
 (0)