diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-12-03 08:16:24 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-12-03 09:44:34 -0800 |
| commit | ce8621d86672aeadee8a380cd225f18ce38848b3 (patch) | |
| tree | b25ebc215dd057efd0296bfd539a4c51bc2fdf01 /meta-python/recipes-devtools/python/python3-httpx_0.28.0.bb | |
| parent | 8ef020e8445ca3793ee457497c864e4389fa0017 (diff) | |
| download | meta-openembedded-ce8621d86672aeadee8a380cd225f18ce38848b3.tar.gz | |
python3-httpx: upgrade 0.27.2 -> 0.28.0
Changelog:
=============
- The following cases of configuration API have been deprecated:
The verify argument as a string argument is now deprecated and will raise warnings.
The cert argument is now deprecated and will raise warnings.
- The deprecated proxies argument has now been removed.
- The deprecated app argument has now been removed.
- JSON request bodies use a compact representation. (#3363)
- Review URL percent escape sets, based on WHATWG spec. (#3371, #3373)
- Ensure certifi and httpcore are only imported if required. (#3377)
- Treat socks5h as a valid proxy scheme. (#3178)
- Cleanup Request() method signature in line with client.request() and httpx.request(). (#3378)
Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-httpx_0.28.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-httpx_0.28.0.bb | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-httpx_0.28.0.bb b/meta-python/recipes-devtools/python/python3-httpx_0.28.0.bb new file mode 100644 index 0000000000..2b8c809c08 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-httpx_0.28.0.bb | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | SUMMARY = "A next generation HTTP client for Python." | ||
| 2 | SECTION = "devel/python" | ||
| 3 | LICENSE = "BSD-3-Clause" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=c624803bdf6fc1c4ce39f5ae11d7bd05" | ||
| 5 | |||
| 6 | inherit pypi python_hatchling | ||
| 7 | |||
| 8 | SRC_URI[sha256sum] = "0858d3bab51ba7e386637f22a61d8ccddaeec5f3fe4209da3a6168dbb91573e0" | ||
| 9 | |||
| 10 | DEPENDS += "\ | ||
| 11 | python3-hatch-fancy-pypi-readme-native \ | ||
| 12 | " | ||
| 13 | |||
| 14 | PACKAGECONFIG ??= "" | ||
| 15 | PACKAGECONFIG[brotli] = ",,,python3-brotli" | ||
| 16 | PACKAGECONFIG[http2] = ",,,python3-h2" | ||
| 17 | PACKAGECONFIG[socks] = ",,,python3-socksio" | ||
| 18 | |||
| 19 | RDEPENDS:${PN} += "\ | ||
| 20 | python3-anyio \ | ||
| 21 | python3-certifi \ | ||
| 22 | python3-httpcore \ | ||
| 23 | python3-idna \ | ||
| 24 | python3-sniffio \ | ||
| 25 | python3-json \ | ||
| 26 | python3-core \ | ||
| 27 | python3-netclient \ | ||
| 28 | python3-compression \ | ||
| 29 | " | ||
| 30 | |||
| 31 | PACKAGES += "\ | ||
| 32 | ${PN}-cli \ | ||
| 33 | " | ||
| 34 | |||
| 35 | RDEPENDS:${PN}-cli += "\ | ||
| 36 | ${PN} \ | ||
| 37 | python3-click \ | ||
| 38 | python3-pygments \ | ||
| 39 | python3-rich \ | ||
| 40 | " | ||
| 41 | |||
| 42 | FILES:${PN} = "\ | ||
| 43 | ${libdir}/${PYTHON_DIR} \ | ||
| 44 | " | ||
| 45 | |||
| 46 | FILES:${PN}-cli = "\ | ||
| 47 | ${bindir}/httpx \ | ||
| 48 | " | ||
