* fix: add missing config-file option to the action * feat: empty config-file triggers default behavior * Apply suggestions from code review Co-authored-by: Joe Rickerby <joerick@mac.com> Co-authored-by: Joe Rickerby <joerick@mac.com>
17 lines
449 B
Python
17 lines
449 B
Python
from cibuildwheel.options import CommandLineArguments
|
|
|
|
|
|
def get_default_command_line_arguments() -> CommandLineArguments:
|
|
defaults = CommandLineArguments()
|
|
|
|
defaults.platform = "auto"
|
|
defaults.allow_empty = False
|
|
defaults.archs = None
|
|
defaults.config_file = ""
|
|
defaults.output_dir = None
|
|
defaults.package_dir = "."
|
|
defaults.prerelease_pythons = False
|
|
defaults.print_build_identifiers = False
|
|
|
|
return defaults
|