diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2024-03-22 19:56:08 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-03-23 10:01:49 -0700 |
| commit | a1938bff15159e6b95349cc8f61f12d1bd05f783 (patch) | |
| tree | 220044bc1e5b78a2b9e33bdc1a9d4b1ffe96970d /meta-python/recipes-devtools/python/python3-httpx_0.27.0.bb | |
| parent | 37594d354b993925d8ef02c8abe191e6c8e747cf (diff) | |
| download | meta-openembedded-a1938bff15159e6b95349cc8f61f12d1bd05f783.tar.gz | |
python3-httpx: Upgrade 0.26.0 -> 0.27.0
Upgrade to version 0.27.0:
- The app=... shortcut has been deprecated. Use the explicit style
of transport=httpx.WSGITransport() or transport=httpx.ASGITransport()
instead.
- Respect the http1 argument while configuring proxy transports.
- Fix RFC 2069 mode digest authentication.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-httpx_0.27.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-httpx_0.27.0.bb | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-httpx_0.27.0.bb b/meta-python/recipes-devtools/python/python3-httpx_0.27.0.bb new file mode 100644 index 0000000000..e4d3cbeee8 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-httpx_0.27.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] = "a0cb88a46f32dc874e04ee956e4c2764aba2aa228f650b06788ba6bda2962ab5" | ||
| 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 | " | ||
