diff --git a/cibuildwheel/linux.py b/cibuildwheel/linux.py index 630eae43..e2d6045f 100644 --- a/cibuildwheel/linux.py +++ b/cibuildwheel/linux.py @@ -53,7 +53,7 @@ def get_python_configurations( ] -def get_build_step( +def get_build_steps( options: BuildOptions, python_configurations: List[PythonConfiguration] ) -> Iterator[BuildStep]: platforms = [ @@ -313,7 +313,7 @@ def build(options: BuildOptions) -> None: container_project_path = PurePath("/project") container_package_dir = container_project_path / abs_package_dir.relative_to(cwd) - for build_step in get_build_step(options, python_configurations): + for build_step in get_build_steps(options, python_configurations): try: log.step(f"Starting Docker image {build_step.docker_image}...") diff --git a/cibuildwheel/options.py b/cibuildwheel/options.py index 007cb05e..164cd409 100644 --- a/cibuildwheel/options.py +++ b/cibuildwheel/options.py @@ -277,7 +277,7 @@ def _compute_single_options( output_dir: Path, ) -> BuildOptions: """ - Gather options from the command line, environment, and configuration file. + Compute BuildOptions for a single run configuration. """ # Can't be configured per selector before_all = options("before-all", sep=" && ")