diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2026-06-12 18:34:03 +0300 |
|---|---|---|
| committer | Khem Raj <khem.raj@oss.qualcomm.com> | 2026-06-14 23:13:32 -0700 |
| commit | bc1a962e4b20137cfbfc8b1def15f455f41f81d5 (patch) | |
| tree | a18199ad869a1a6fb4ad2d66747999822226874a /meta-python/recipes-devtools/python/python3-httpx2_2.4.0.bb | |
| parent | f4116069927f6159b15764577f4bb959ee1e6b99 (diff) | |
| download | meta-openembedded-bc1a962e4b20137cfbfc8b1def15f455f41f81d5.tar.gz | |
python3-httpx2: Add recipe
Add recipe for release 2.4.0:
- Add HTTPXDeprecationWarning, a UserWarning subclass shown by default
so deprecations are visible without enabling warnings.
- Limit the number of chained Content-Encoding decoders to 5.
- Allow version 15 of rich in the cli extra.
- Parse an empty Digest auth realm without crashing.
- Decode IDNA labels in non-leading host positions.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-httpx2_2.4.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-httpx2_2.4.0.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-httpx2_2.4.0.bb b/meta-python/recipes-devtools/python/python3-httpx2_2.4.0.bb new file mode 100644 index 0000000000..35f9d91c84 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-httpx2_2.4.0.bb | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | SUMMARY = "The next generation HTTP client." | ||
| 2 | LICENSE = "BSD-3-Clause" | ||
| 3 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=166cfc32dc0986f87a7e950553b52e5e" | ||
| 4 | |||
| 5 | SRC_URI[sha256sum] = "32e0734b61eb0824b3f56a9e98d6d92d381a3ef12c0045aa917ee63df6c411ef" | ||
| 6 | |||
| 7 | inherit pypi python_hatchling | ||
| 8 | |||
| 9 | DEPENDS += " \ | ||
| 10 | python3-uv-dynamic-versioning-native \ | ||
| 11 | python3-hatch-fancy-pypi-readme-native \ | ||
| 12 | python3-jinja2-native \ | ||
| 13 | python3-tomlkit-native \ | ||
| 14 | python3-dunamai-native \ | ||
| 15 | " | ||
| 16 | |||
| 17 | RDEPENDS:${PN} += " \ | ||
| 18 | python3-core \ | ||
| 19 | python3-logging \ | ||
| 20 | python3-h2 \ | ||
| 21 | python3-idna \ | ||
| 22 | " | ||
