diff mbox series

[meta-python,7/8] python3-httpx2: Add recipe

Message ID 20260612153404.3213552-7-leon.anavi@konsulko.com
State Under Review
Headers show
Series [meta-python,1/8] python3-tornado: Upgrade 6.5.6 -> 6.5.7 | expand

Commit Message

Leon Anavi June 12, 2026, 3:34 p.m. UTC
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>
---
 .../python/python3-httpx2_2.4.0.bb            | 22 +++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-httpx2_2.4.0.bb
diff mbox series

Patch

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 @@ 
+SUMMARY = "The next generation HTTP client."
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE.md;md5=166cfc32dc0986f87a7e950553b52e5e"
+
+SRC_URI[sha256sum] = "32e0734b61eb0824b3f56a9e98d6d92d381a3ef12c0045aa917ee63df6c411ef"
+
+inherit pypi python_hatchling
+
+DEPENDS += " \
+    python3-uv-dynamic-versioning-native \
+    python3-hatch-fancy-pypi-readme-native \
+    python3-jinja2-native \
+    python3-tomlkit-native \
+    python3-dunamai-native \
+"
+
+RDEPENDS:${PN} += " \
+    python3-core \
+    python3-logging \
+    python3-h2 \
+    python3-idna \
+"