From 1b06fcae42bc5dc4096a02fea6733dab56bfc48b Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Tue, 25 Aug 2026 16:20:48 +0900 Subject: [PATCH] change: target baseline cpu architecture --- scripts/prebuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prebuild.py b/scripts/prebuild.py index b0c1c0b..8700b62 100644 --- a/scripts/prebuild.py +++ b/scripts/prebuild.py @@ -27,7 +27,7 @@ def fetch(url: str, destination: str) -> None: def get_cpython() -> None: source = f"https://github.com/astral-sh/python-build-standalone/releases/download/{DATE}/" - build = f"{CPYTHON_BUILD}%2B{DATE}-x86_64_v3-unknown-linux-gnu-install_only_stripped.tar.gz" + build = f"{CPYTHON_BUILD}%2B{DATE}-x86_64-unknown-linux-gnu-install_only_stripped.tar.gz" url = f"{source}{build}" outfile = unquote(build) fetch(url, outfile)