Merge pull request #467 from aclist/change/baseline-cpu-arch
Some checks failed
Mirror to Codeberg / mirror-to-codeberg (push) Has been cancelled

change: target baseline cpu architecture
This commit is contained in:
aclist 2026-08-25 16:21:36 +09:00 committed by GitHub
commit 04e9e5dcf0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)