1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
|
"""This script is copied and adapted from
https://github.com/astral-sh/rye/blob/main/rye-devtools/
Licensed under the MIT.
It finds the latest Python releases, sorts them by
various factors (arch, platform, flavor) and generates download
links to be included into rye at build time.
"""
from __future__ import annotations
import abc
import asyncio
import itertools
import os
import re
import sys
from dataclasses import dataclass
from enum import StrEnum
from typing import IO, TYPE_CHECKING, NamedTuple
from urllib.parse import unquote
import httpx
from httpx import HTTPStatusError
if TYPE_CHECKING:
from typing import Self
class PlatformTriple(NamedTuple):
arch: str
platform: str
environment: str | None
flavor: str
class Version(NamedTuple):
major: int
minor: int
patch: int
@classmethod
def from_str(cls, version: str) -> Self:
major, minor, patch = version.split(".", 3)
return cls(int(major), int(minor), int(patch))
def __str__(self) -> str:
return f"{self.major}.{self.minor}.{self.patch}"
def __neg__(self) -> Self:
return type(self)(-self.major, -self.minor, -self.patch)
class VersionKey(NamedTuple):
platform: str
arch: str
install_only: bool
def __repr__(self) -> str:
return repr(tuple(self))
def log(*args, **kwargs):
print(*args, file=sys.stderr, **kwargs)
def batched(iterable, n):
"Batch data into tuples of length n. The last batch may be shorter."
# batched('ABCDEFG', 3) --> ABC DEF G
if n < 1:
raise ValueError("n must be at least one")
it = iter(iterable)
while batch := tuple(itertools.islice(it, n)):
yield batch
class PythonImplementation(StrEnum):
CPYTHON = "cpython"
PYPY = "pypy"
@dataclass
class PythonDownload:
version: Version
triple: PlatformTriple
implementation: PythonImplementation
filename: str
url: str
sha256: str | None = None
class Finder:
implementation: PythonImplementation
@abc.abstractmethod
async def find(self) -> list[PythonDownload]:
raise NotImplementedError
class CPythonFinder(Finder):
implementation = PythonImplementation.CPYTHON
RELEASE_URL = "https://api.github.com/repos/astral-sh/python-build-standalone/releases"
# Flavors in URLs are identified via substring match using the specified search order, so
# correct identification requires combined flavours be listed before less optimized builds
FLAVOR_PREFERENCES_FULL = [
# For full installs, prefer more optimizations and shared library builds over static builds
"shared-pgo",
"shared-noopt",
"pgo+lto",
"pgo",
"lto",
]
FLAVOR_PREFERENCES_INSTALL = [
# For install-only use, prefer the smaller downloads without debug symbols
"install_only_stripped",
"install_only",
]
FLAVOR_PREFERENCES = FLAVOR_PREFERENCES_FULL + FLAVOR_PREFERENCES_INSTALL
HIDDEN_FLAVORS = [
"debug",
"noopt",
]
SPECIAL_TRIPLES = {
"macos": "x86_64-apple-darwin",
"linux64": "x86_64-unknown-linux-gnu",
"windows-amd64": "x86_64-pc-windows-msvc",
"windows-x86-shared-pgo": "i686-pc-windows-msvc-shared-pgo",
"windows-amd64-shared-pgo": "x86_64-pc-windows-msvc-shared-pgo",
"windows-x86": "i686-pc-windows-msvc",
"linux64-musl": "x86_64-unknown-linux-musl",
}
# matches these: https://doc.rust-lang.org/std/env/consts/constant.ARCH.html
ARCH_MAPPING = {
"x86_64": "x86_64",
"x86": "x86",
"i686": "x86",
"aarch64": "aarch64",
}
# matches these: https://doc.rust-lang.org/std/env/consts/constant.OS.html
PLATFORM_MAPPING = {
"darwin": "macos",
"windows": "windows",
"linux": "linux",
}
ENV_MAPPING = {
"gnu": "gnu",
# We must ignore musl for now
# "musl": "musl",
}
FILENAME_RE = re.compile(
r"""(?x)
^
cpython-(?P<ver>\d+\.\d+\.\d+?)
(?:\+\d+)?
-(?P<triple>.*?)
(?:-[\dT]+)?\.tar\.(?:gz|zst)
$
"""
)
def __init__(self, client: httpx.AsyncClient):
self.client = client
async def find(self) -> list[PythonDownload]:
downloads = await self.fetch_indygreg_downloads()
await self.fetch_indygreg_checksums(downloads, n=20)
return downloads
async def fetch_indygreg_downloads(self, pages: int = 100) -> list[PythonDownload]:
"""Fetch all the indygreg downloads from the release API."""
results: dict[Version, dict[VersionKey, list[PythonDownload]]] = {}
for page in range(1, pages):
log(f"Fetching indygreg release page {page}")
resp = await self.client.get(self.RELEASE_URL, params={"page": page, "per_page": 10})
resp.raise_for_status()
await resp.aread()
rows = resp.json()
if not rows:
break
for row in rows:
for asset in row["assets"]:
url = asset["browser_download_url"]
download = self.parse_download_url(url)
if download is not None:
install_only = download.triple.flavor.startswith("install_only")
key = VersionKey(
download.triple.platform,
download.triple.arch,
install_only,
)
(
results.setdefault(download.version, {})
# For now, we only group by arch and platform, because Rust's PythonVersion doesn't have a notion
# of environment. Flavor is only used to sort download choices and must not be included in grouping.
.setdefault(key, [])
.append(download)
)
downloads = []
for platform_downloads in results.values():
for flavors in platform_downloads.values():
best = self.pick_best_download(flavors)
if best is not None:
downloads.append(best)
return downloads
@classmethod
def parse_download_url(cls, url: str) -> PythonDownload | None:
"""Parse an indygreg download URL into a PythonDownload object."""
# The URL looks like this:
# https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1%2B20240107-aarch64-unknown-linux-gnu-lto-full.tar.zst
filename = unquote(url.rsplit("/", maxsplit=1)[-1])
if filename.endswith(".sha256"):
return
match = cls.FILENAME_RE.match(filename)
if match is None:
return
version_str, triple_str = match.groups()
version = Version.from_str(version_str)
triple = cls.parse_triple(triple_str)
if triple is None:
return
return PythonDownload(
version=version,
triple=triple,
implementation=PythonImplementation.CPYTHON,
filename=filename,
url=url,
)
@classmethod
def parse_triple(cls, triple: str) -> PlatformTriple | None:
"""Parse a triple into a PlatformTriple object."""
def match_flavor(triple: str) -> str:
for flavor in cls.FLAVOR_PREFERENCES + cls.HIDDEN_FLAVORS:
if flavor in triple:
return flavor
return ""
def match_mapping(
pieces: list[str], mapping: dict[str, str]
) -> tuple[str | None, list[str]]:
for i in reversed(range(0, len(pieces))):
if pieces[i] in mapping:
return mapping[pieces[i]], pieces[:i]
return None, pieces
# Map, old, special triplets to proper triples for parsing, or
# return the triple if it's not a special one
triple = cls.SPECIAL_TRIPLES.get(triple, triple)
pieces = triple.split("-")
flavor = match_flavor(triple)
env, pieces = match_mapping(pieces, cls.ENV_MAPPING)
platform, pieces = match_mapping(pieces, cls.PLATFORM_MAPPING)
arch, pieces = match_mapping(pieces, cls.ARCH_MAPPING)
if arch is None or platform is None:
return
if env is None and platform == "linux":
return
return PlatformTriple(arch, platform, env, flavor)
@classmethod
def pick_best_download(cls, downloads: list[PythonDownload]) -> PythonDownload | None:
"""Pick the best download from the list of downloads."""
def preference(download: PythonDownload) -> int:
try:
return cls.FLAVOR_PREFERENCES.index(download.triple.flavor)
except ValueError:
return len(cls.FLAVOR_PREFERENCES) + 1
return min(downloads, key=preference, default=None)
async def fetch_indygreg_checksums(self, downloads: list[PythonDownload], n: int = 10) -> None:
"""Fetch the checksums for the given downloads."""
checksums_url = set()
for download in downloads:
release_url = download.url.rsplit("/", maxsplit=1)[0]
checksum_url = release_url + "/SHA256SUMS"
checksums_url.add(checksum_url)
async def fetch_checksums(url: str):
try:
resp = await self.client.get(url)
except HTTPStatusError as e:
if e.response.status_code != 404:
raise
return None
return resp
completed = 0
tasks = []
for batch in batched(checksums_url, n):
log(f"Fetching indygreg checksums: {completed}/{len(checksums_url)}")
async with asyncio.TaskGroup() as tg:
for url in batch:
task = tg.create_task(fetch_checksums(url))
tasks.append(task)
completed += n
checksums = {}
for task in tasks:
resp = task.result()
if resp is None:
continue
lines = resp.text.splitlines()
for line in lines:
checksum, filename = line.split(" ", maxsplit=1)
filename = filename.strip()
checksums[filename] = checksum
for download in downloads:
download.sha256 = checksums.get(download.filename)
class PyPyFinder(Finder):
implementation = PythonImplementation.PYPY
RELEASE_URL = "https://raw.githubusercontent.com/pypy/pypy/main/pypy/tool/release/versions.json"
CHECKSUM_URL = "https://raw.githubusercontent.com/pypy/pypy.org/main/pages/checksums.rst"
CHECKSUM_RE = re.compile(r"^\s*(?P<checksum>\w{64})\s+(?P<filename>pypy.+)$", re.MULTILINE)
ARCH_MAPPING = {
"x64": "x86_64",
"i686": "x86",
"aarch64": "aarch64",
"arm64": "aarch64",
}
PLATFORM_MAPPING = {
"darwin": "macos",
"win64": "windows",
"linux": "linux",
}
def __init__(self, client: httpx.AsyncClient):
self.client = client
async def find(self) -> list[PythonDownload]:
downloads = await self.fetch_downloads()
await self.fetch_checksums(downloads)
return downloads
async def fetch_downloads(self) -> list[PythonDownload]:
log("Fetching pypy downloads...")
resp = await self.client.get(self.RELEASE_URL)
versions = resp.json()
results = {}
for version in versions:
if not version["stable"]:
continue
python_version = Version.from_str(version["python_version"])
if python_version < (3, 7, 0):
continue
for file in version["files"]:
arch = self.ARCH_MAPPING.get(file["arch"])
platform = self.PLATFORM_MAPPING.get(file["platform"])
if arch is None or platform is None:
continue
environment = "gnu" if platform == "linux" else None
download = PythonDownload(
version=python_version,
triple=PlatformTriple(
arch=arch,
platform=platform,
environment=environment,
flavor="install_only",
),
implementation=PythonImplementation.PYPY,
filename=file["filename"],
url=file["download_url"],
)
# Only keep the latest pypy version of each arch/platform
if (python_version, arch, platform) not in results:
results[(python_version, arch, platform)] = download
return list(results.values())
async def fetch_checksums(self, downloads: list[PythonDownload]) -> None:
log("Fetching pypy checksums...")
resp = await self.client.get(self.CHECKSUM_URL)
text = resp.text
checksums = {}
for match in self.CHECKSUM_RE.finditer(text):
checksums[match.group("filename")] = match.group("checksum")
for download in downloads:
download.sha256 = checksums.get(download.filename)
def build_map(
downloads: list[PythonDownload],
) -> dict[tuple[PythonImplementation, Version, bool], dict[VersionKey, tuple[str, str | None]]]:
versions: dict[
tuple[PythonImplementation, Version, bool], dict[VersionKey, tuple[str, str | None]]
] = {}
for download in sorted(downloads, key=lambda d: (d.implementation, -d.version)):
freethreaded = "freethreaded" in download.filename
item = versions.setdefault((download.implementation, download.version, freethreaded), {})
key = VersionKey(
download.triple.platform,
download.triple.arch,
download.triple.flavor.startswith("install_only"),
)
if key in item:
continue
item[key] = (download.url, download.sha256)
return versions
def render(downloads: list[PythonDownload], file: IO[str] | None = None):
"""Render python versions file."""
def write(line: str) -> None:
print(line, file=file)
write("# @Generated by find_versions.py. DO NOT EDIT.")
write("from __future__ import annotations")
write("from ._utils import PythonVersion")
write(
"PYTHON_VERSIONS: dict[PythonVersion, dict[tuple[str, str, bool], tuple[str, str | None]]] = {"
)
for key, item in build_map(downloads).items():
write(
f" PythonVersion('{key[0]}', {key[1].major}, {key[1].minor}, {key[1].patch}, {key[2]}): {item!r},"
)
write("}")
async def main():
import contextlib
token = os.getenv("GITHUB_TOKEN")
if not token:
log("Please set GITHUB_TOKEN environment variable or create a token.txt file.")
sys.exit(1)
output = sys.argv[1] if len(sys.argv) > 1 else None
headers = {
"X-GitHub-Api-Version": "2022-11-28",
"Authorization": f"Bearer {token}",
"Accept": "application/vnd.github+json",
}
client = httpx.AsyncClient(follow_redirects=True, headers=headers, timeout=30)
finders: list[Finder] = [
CPythonFinder(client),
PyPyFinder(client),
]
downloads: list[PythonDownload] = []
log("Fetching all Python downloads and generating code.")
async with client:
for finder in finders:
log(f"Finding {finder.implementation} downloads...")
downloads.extend(await finder.find())
cm = open(output, "w", encoding="utf-8") if output else contextlib.nullcontext()
with cm as file:
render(downloads, file)
if __name__ == "__main__":
asyncio.run(main())
|