mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
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>
36 lines
1000 B
BlitzBasic
36 lines
1000 B
BlitzBasic
SUMMARY = "Python HTTP for Humans."
|
|
HOMEPAGE = "https://requests.readthedocs.io"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658"
|
|
|
|
SRC_URI:append:class-nativesdk = " \
|
|
file://environment.d-python3-requests.sh \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
do_install:append:class-nativesdk() {
|
|
mkdir -p ${D}${SDKPATHNATIVE}/environment-setup.d
|
|
install -m 644 ${UNPACKDIR}/environment.d-python3-requests.sh ${D}${SDKPATHNATIVE}/environment-setup.d/python3-requests.sh
|
|
}
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-certifi \
|
|
python3-email \
|
|
python3-json \
|
|
python3-netserver \
|
|
python3-pysocks \
|
|
python3-urllib3 \
|
|
python3-chardet \
|
|
python3-idna \
|
|
python3-compression \
|
|
"
|
|
|
|
FILES:${PN}:append:class-nativesdk = " ${SDKPATHNATIVE}/environment-setup.d/python3-requests.sh"
|
|
|
|
CVE_PRODUCT = "requests"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|