pythonOptions top-level property
Implementation
final List<Option> pythonOptions = [
Option(
name: ['-p', '--python'],
description:
'The Python interpreter to use to determine the minimum supported Python version',
args: [Arg(name: 'PYTHON')]),
Option(
name: '--python-preference',
description:
'Whether to prefer uv-managed or system Python installations',
args: [
Arg(name: 'PYTHON_PREFERENCE', suggestions: [
FigSuggestion(name: 'only-managed'),
FigSuggestion(name: 'managed'),
FigSuggestion(name: 'system'),
FigSuggestion(name: 'only-system')
])
]),
Option(
name: '--no-python-downloads',
description: 'Disable automatic downloads of Python')
];