aboutsummaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-click_8.0.1.bb
AgeCommit message (Collapse)Author
2021-08-19python3-click: Add missing ptest artifactsTrevor Gamblin
The click ptests require the top-level setup.cfg and the docs/conf.py file to be present in the PTEST_PATH, so add steps to copy them to the image when building the ptest. Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-03Convert to new override syntaxMartin Jansa
This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2021-05-24python3-click: Upgrade 8.0.0 -> 8.0.1Leon Anavi
Upgrade to release 8.0.1: - Mark top-level names as exported so type checking understand imports in user projects. - Annotate Context.obj as Any so type checking allows all operations on the arbitrary object. - Fix some types that weren’t available in Python 3.6.0. - Fix type checking for iterating over ProgressBar object. - The importlib_metadata backport package is installed on Python < 3.8. - Arguments with nargs=-1 only use env var value if no command line values are given. - Flag options guess their type from flag_value if given, like regular options do from default. - Added documentation that custom parameter types may be passed already valid values in addition to strings. - Resolving commands returns the name that was given, not command.name, fixing an unintended change to help text and default_map lookups. When using patterns like AliasedGroup, override resolve_command to change the name that is returned if needed. - If a default value is invalid, it does not prevent showing help text. - Pass windows_expand_args=False when calling the main command to disable pattern expansion on Windows. There is no way to escape patterns in CMD, so if the program needs to pass them on as-is then expansion must be disabled. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>