meta-openembedded/meta-python/recipes-devtools/python/python3-yarl_1.14.0.bb
Leon Anavi 3c218d499a
python3-yarl: Upgrade 1.13.1 -> 1.14.0
Upgrade to release 1.14.0:

- Switched to using the :mod:`propcache <propcache.api>` package
  for property caching
- Started testing with Hypothesis
- Improved performance of :py:meth:`~yarl.URL.is_default_port` when
  no explicit port is set
- Improved performance of converting :class:`~yarl.URL` to a string
  when no explicit port is set
- Improved performance of the :py:meth:`~yarl.URL.origin` method
- Improved performance of encoding hosts

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-10-10 08:06:31 -07:00

35 lines
800 B
BlitzBasic

SUMMARY = "The module provides handy URL class for url parsing and changing"
HOMEPAGE = "https://github.com/aio-libs/yarl/"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
SRC_URI[sha256sum] = "88c7d9d58aab0724b979ab5617330acb1c7030b79379c8138c1c8c94e121d1b3"
SRC_URI += "file://run-ptest"
PYPI_PACKAGE = "yarl"
inherit pypi ptest python_setuptools_build_meta
DEPENDS += " \
python3-expandvars-native \
python3-cython-native \
"
RDEPENDS:${PN} = "\
python3-multidict \
python3-idna \
python3-io \
python3-propcache \
"
RDEPENDS:${PN}-ptest += " \
python3-pytest \
python3-unittest-automake-output \
"
do_install_ptest() {
install -d ${D}${PTEST_PATH}/tests
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
}