◐ Shell
clean mode source ↗

[3.14] gh-146444: Don't package as part of iOS 'build hosts' target (GH-146628) by miss-islington · Pull Request #146629 · python/cpython

Expand Up @@ -52,10 +52,9 @@ from os.path import basename, relpath from pathlib import Path from subprocess import CalledProcessError from typing import Union
EnvironmentT = dict[str, str] ArgsT = Sequence[Union[str, Path]] ArgsT = Sequence[str | Path]
SCRIPT_NAME = Path(__file__).name PYTHON_DIR = Path(__file__).resolve().parent.parent Expand Down Expand Up @@ -769,7 +768,7 @@ def build(context: argparse.Namespace, host: str | None = None) -> None: ]: step(context, host=step_host)
if host in {"all", "hosts"}: if host == "all": package(context)

Expand Down