mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-08-02 22:07:49 +00:00
5c172c6c81
Changelog: ============== - NEW: Drop Python 3.9 support. - NEW: Lazy compile selector patterns to improve initial import speed. - FIX: Correct :nth-child/:nth-of-type (and -last- variants) for An+B values whose sequence steps onto - index 0 or onto the last child (e.g. :nth-child(2n-2), :nth-child(n-1), :nth-child(n+5)), which previously - matched the wrong elements or nothing at all - FIX: More efficient CSS ID matching - FIX: Fix inefficient trimming of comments and white space Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
25 lines
614 B
BlitzBasic
25 lines
614 B
BlitzBasic
SUMMARY = "CSS selector library for python-beautifulsoup4"
|
|
HOMEPAGE = "https://github.com/facelessuser/soupsieve"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.md;md5=74851a2f1e5c07496dcb452af6a6bf54"
|
|
|
|
SRC_URI[sha256sum] = "acee8417325c5653e1377dc31eccad59eb82cbc65942afe6174c53b3aaad63fc"
|
|
|
|
inherit pypi python_hatchling ptest-python-pytest
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-core \
|
|
python3-datetime \
|
|
"
|
|
RDEPENDS:${PN}:append:class-target = " \
|
|
python3-beautifulsoup4 \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-beautifulsoup4 \
|
|
python3-typing-extensions \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|