diff options
author | Khem Raj <raj.khem@gmail.com> | 2025-05-31 10:07:31 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-06-01 08:31:00 -0700 |
commit | c83eb3b1ba4ba501b8c44ac1cda58f981c2a2b11 (patch) | |
tree | d065cdf3a2dd356cb623db97a235e436002fe33a | |
parent | 0c4f09f7258b6f1ef5f171fdeace41419016ecd0 (diff) | |
download | meta-openembedded-c83eb3b1ba4ba501b8c44ac1cda58f981c2a2b11.tar.gz |
python3-typer: Upgrade to 0.16.0
Upgrades
Add compatibility with Click 8.2. PR #1222 by @tiangolo.
When using the CliRunner with Click < 8.2,
to be able to access the stderr output, you needed to set the mix_stderr
parameter to True. Since Click 8.2 (and Typer 0.160 this release
supporting it) this is no longer necessary, so this parameter has been
removed.
Refactors
Refactor tests for compatibility with Click 8.2. PR #1230 by @tiangolo.
Internal
Remove Google Analytics. PR #1229 by @tiangolo.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-python/recipes-devtools/python/python3-typer_0.16.0.bb (renamed from meta-python/recipes-devtools/python/python3-typer_0.15.4.bb) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-python/recipes-devtools/python/python3-typer_0.15.4.bb b/meta-python/recipes-devtools/python/python3-typer_0.16.0.bb index 26b0c042be..87e258ae1f 100644 --- a/meta-python/recipes-devtools/python/python3-typer_0.15.4.bb +++ b/meta-python/recipes-devtools/python/python3-typer_0.16.0.bb | |||
@@ -3,11 +3,11 @@ DESCRIPTION = "\ | |||
3 | Typer is a library for building CLI applications that users will love using and developers will love creating. Based on Python type hints. \ | 3 | Typer is a library for building CLI applications that users will love using and developers will love creating. Based on Python type hints. \ |
4 | It's also a command line tool to run scripts, automatically converting them to CLI applications. \ | 4 | It's also a command line tool to run scripts, automatically converting them to CLI applications. \ |
5 | " | 5 | " |
6 | HOMEPAGE = "https://github.com/tiangolo/typer" | 6 | HOMEPAGE = "https://github.com/fastapi/typer" |
7 | LICENSE = "MIT" | 7 | LICENSE = "MIT" |
8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=173d405eb704b1499218013178722617" | 8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=173d405eb704b1499218013178722617" |
9 | 9 | ||
10 | SRC_URI[sha256sum] = "89507b104f9b6a0730354f27c39fae5b63ccd0c95b1ce1f1a6ba0cfd329997c3" | 10 | SRC_URI[sha256sum] = "af377ffaee1dbe37ae9440cb4e8f11686ea5ce4e9bae01b84ae7c63b87f1dd3b" |
11 | 11 | ||
12 | inherit pypi python_setuptools_build_meta ptest | 12 | inherit pypi python_setuptools_build_meta ptest |
13 | 13 | ||