feat: config settings placeholders (#2827)
* feat: config settings placeholders Assisted-by: Copilot:GPT-5.4 Signed-off-by: Henry Schreiner <henryfs@princeton.edu> * Update docs/options.md Co-authored-by: agriya khetarpal <74401230+agriyakhetarpal@users.noreply.github.com> --------- Signed-off-by: Henry Schreiner <henryfs@princeton.edu> Co-authored-by: agriya khetarpal <74401230+agriyakhetarpal@users.noreply.github.com>
This commit is contained in:
co-authored by
agriya khetarpal
parent
aed06ac94d
commit
cbef1e8b89
@@ -24,7 +24,11 @@ from filelock import FileLock
|
||||
|
||||
from cibuildwheel import errors, platforms # pylint: disable=cyclic-import
|
||||
from cibuildwheel.architecture import Architecture, arch_synonym
|
||||
from cibuildwheel.frontend import get_build_frontend_extra_flags, parse_config_settings
|
||||
from cibuildwheel.frontend import (
|
||||
get_build_frontend_extra_flags,
|
||||
parse_config_settings,
|
||||
prepare_config_settings,
|
||||
)
|
||||
from cibuildwheel.logger import log
|
||||
from cibuildwheel.options import BuildOptions, Options
|
||||
from cibuildwheel.selector import BuildSelector
|
||||
@@ -466,7 +470,11 @@ def build_wheel(state: BuildState) -> Path:
|
||||
*get_build_frontend_extra_flags(
|
||||
state.options.build_frontend,
|
||||
state.options.build_verbosity,
|
||||
state.options.config_settings,
|
||||
prepare_config_settings(
|
||||
state.options.config_settings,
|
||||
project=".",
|
||||
package=state.options.package_dir,
|
||||
),
|
||||
py38=False,
|
||||
),
|
||||
env=state.android_env,
|
||||
@@ -484,7 +492,11 @@ def build_wheel(state: BuildState) -> Path:
|
||||
*get_build_frontend_extra_flags(
|
||||
state.options.build_frontend,
|
||||
state.options.build_verbosity,
|
||||
state.options.config_settings,
|
||||
prepare_config_settings(
|
||||
state.options.config_settings,
|
||||
project=".",
|
||||
package=state.options.package_dir,
|
||||
),
|
||||
py38=False,
|
||||
),
|
||||
env=state.android_env,
|
||||
|
||||
Reference in New Issue
Block a user