diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2021-05-20 19:42:37 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-05-24 07:36:50 -0700 |
commit | 2413956e4f3af413b06bbf26888f12e4fd1f19d0 (patch) | |
tree | fffcdf5179b1a2d50f2166e37c0d94ad979eff5b | |
parent | 1ead5d6575f8b3abb487cf363cabf7e2debfbe6f (diff) | |
download | meta-openembedded-2413956e4f3af413b06bbf26888f12e4fd1f19d0.tar.gz |
python3-click: Upgrade 8.0.0 -> 8.0.1
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>
-rw-r--r-- | meta-python/recipes-devtools/python/python3-click_8.0.1.bb (renamed from meta-python/recipes-devtools/python/python3-click_8.0.0.bb) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-click_8.0.0.bb b/meta-python/recipes-devtools/python/python3-click_8.0.1.bb index f7af73d6d..22c6c7903 100644 --- a/meta-python/recipes-devtools/python/python3-click_8.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-click_8.0.1.bb | |||
@@ -8,7 +8,7 @@ HOMEPAGE = "http://click.pocoo.org/" | |||
8 | LICENSE = "BSD-3-Clause" | 8 | LICENSE = "BSD-3-Clause" |
9 | LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=1fa98232fd645608937a0fdc82e999b8" | 9 | LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=1fa98232fd645608937a0fdc82e999b8" |
10 | 10 | ||
11 | SRC_URI[sha256sum] = "7d8c289ee437bcb0316820ccee14aefcb056e58d31830ecab8e47eda6540e136" | 11 | SRC_URI[sha256sum] = "8c04c11192119b1ef78ea049e0a6f0463e4c48ef00a30160c704337586f3ad7a" |
12 | 12 | ||
13 | inherit pypi setuptools3 ptest | 13 | inherit pypi setuptools3 ptest |
14 | 14 | ||