diff options
| author | Tim Orling <tim.orling@konsulko.com> | 2025-09-02 14:46:28 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-09-08 14:05:11 +0100 |
| commit | d939a4831897f392e089c323dbf3ad275a7b9b9f (patch) | |
| tree | 164927dfdf29d607d1c5c9759e89f5e0dc107661 /meta/recipes-devtools/python/python3-requests_2.32.5.bb | |
| parent | 5013e15d63188e4fc155f259090aa3088fd485ae (diff) | |
| download | poky-d939a4831897f392e089c323dbf3ad275a7b9b9f.tar.gz | |
python3-requests: upgrade 2.32.4 -> 2.32.5
2.32.5 (2025-08-18)
* Bugfixes
- The SSLContext caching feature originally introduced in 2.32.0 has
created a new class of issues in Requests that have had negative
impact across a number of use cases. The Requests team has decided
to revert this feature as long term maintenance of it is proving to
be unsustainable in its current iteration.
* Deprecations
- Added support for Python 3.14.
- Dropped support for Python 3.8 following its end of support.
https://requests.readthedocs.io/en/latest/community/updates/#release-history
Comparing Changes:
https://github.com/psf/requests/compare/v2.32.4...v2.32.5
(From OE-Core rev: c4c2313df6c63c26ee3e5d683a8c903050212754)
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-requests_2.32.5.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-requests_2.32.5.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-requests_2.32.5.bb b/meta/recipes-devtools/python/python3-requests_2.32.5.bb new file mode 100644 index 0000000000..43b63e32b1 --- /dev/null +++ b/meta/recipes-devtools/python/python3-requests_2.32.5.bb | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | SUMMARY = "Python HTTP for Humans." | ||
| 2 | HOMEPAGE = "https://requests.readthedocs.io" | ||
| 3 | LICENSE = "Apache-2.0" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" | ||
| 5 | |||
| 6 | SRC_URI:append:class-nativesdk = " \ | ||
| 7 | file://environment.d-python3-requests.sh \ | ||
| 8 | " | ||
| 9 | |||
| 10 | SRC_URI[sha256sum] = "dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf" | ||
| 11 | |||
| 12 | inherit pypi python_setuptools_build_meta | ||
| 13 | |||
| 14 | do_install:append:class-nativesdk() { | ||
| 15 | mkdir -p ${D}${SDKPATHNATIVE}/environment-setup.d | ||
| 16 | install -m 644 ${UNPACKDIR}/environment.d-python3-requests.sh ${D}${SDKPATHNATIVE}/environment-setup.d/python3-requests.sh | ||
| 17 | } | ||
| 18 | |||
| 19 | RDEPENDS:${PN} += " \ | ||
| 20 | python3-certifi \ | ||
| 21 | python3-email \ | ||
| 22 | python3-json \ | ||
| 23 | python3-netserver \ | ||
| 24 | python3-pysocks \ | ||
| 25 | python3-urllib3 \ | ||
| 26 | python3-chardet \ | ||
| 27 | python3-idna \ | ||
| 28 | python3-compression \ | ||
| 29 | " | ||
| 30 | |||
| 31 | FILES:${PN}:append:class-nativesdk = " ${SDKPATHNATIVE}/environment-setup.d/python3-requests.sh" | ||
| 32 | |||
| 33 | CVE_PRODUCT = "requests" | ||
| 34 | |||
| 35 | BBCLASSEXTEND = "native nativesdk" | ||
