Loading build_wheel/__main__.py +1 −1 Original line number Diff line number Diff line Loading @@ -18,7 +18,7 @@ PLATFORM_OPTS = ["all", *PLATFORMS] @click.command @click.option("--output", type=click.Path(file_okay=False), default="dist") @click.option("--platform", "platforms", type=click.Choice(PLATFORM_OPTS), multiple=True) @click.option("--platform", "platforms", type=click.Choice(PLATFORM_OPTS), multiple=True, default=["all"]) @click.argument("packages", nargs=-1, required=True) def cli(output: str, platforms: Sequence[str], packages: Sequence[str]) -> None: config_resource = resources.files(__package__) / "bake.hcl" Loading Loading
build_wheel/__main__.py +1 −1 Original line number Diff line number Diff line Loading @@ -18,7 +18,7 @@ PLATFORM_OPTS = ["all", *PLATFORMS] @click.command @click.option("--output", type=click.Path(file_okay=False), default="dist") @click.option("--platform", "platforms", type=click.Choice(PLATFORM_OPTS), multiple=True) @click.option("--platform", "platforms", type=click.Choice(PLATFORM_OPTS), multiple=True, default=["all"]) @click.argument("packages", nargs=-1, required=True) def cli(output: str, platforms: Sequence[str], packages: Sequence[str]) -> None: config_resource = resources.files(__package__) / "bake.hcl" Loading