diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2023-04-03 18:01:48 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-04-05 15:56:47 -0700 |
commit | 3bed7e365b9bc3b87b563b110d003c46eaf43b44 (patch) | |
tree | 0b6e6c64987ef530a9db55f23f14dd81ac43fe22 /meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb | |
parent | f0e8b2d003e51ac177e1e7d5bc6932ace7571726 (diff) | |
download | meta-openembedded-3bed7e365b9bc3b87b563b110d003c46eaf43b44.tar.gz |
python3-dateparser: upgrade 1.1.7 -> 1.1.8
Improvements:
==============
Improved date parsing for Chinese (#1148)
Improved date parsing for Czech (#1151)
Reorder language by popularity (#1152)
Fix leak of memory in cache (#1140)
Add support for "\d units later" (#1154)
Move modification in CLDR data to yaml (#1153)
Add support to use timezone via settings to get PREFER_DATES_FROM result (#1155)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb b/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb new file mode 100644 index 0000000000..67b82940bf --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-dateparser_1.1.8.bb | |||
@@ -0,0 +1,20 @@ | |||
1 | DESCRIPTION = "Provides modules to easily parse localized dates in almost any string formats commonly found on web pages" | ||
2 | HOMEPAGE = "https://github.com/scrapinghub/dateparser" | ||
3 | LICENSE = "BSD-3-Clause" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3d3ed25571191e7aa3f55d0a6efe0051" | ||
5 | |||
6 | SRC_URI[sha256sum] = "86b8b7517efcc558f085a142cdb7620f0921543fcabdb538c8a4c4001d8178e3" | ||
7 | |||
8 | PYPI_PACKAGE = "dateparser" | ||
9 | |||
10 | inherit pypi setuptools3 | ||
11 | |||
12 | CLEANBROKEN = "1" | ||
13 | |||
14 | RDEPENDS:${PN} += " \ | ||
15 | ${PYTHON_PN}-dateutil \ | ||
16 | ${PYTHON_PN}-tzlocal \ | ||
17 | ${PYTHON_PN}-ruamel-yaml \ | ||
18 | " | ||
19 | |||
20 | # Ommitted ${PYTHON_PN}-convertdate, ${PYTHON_PN}-jdatetime ${PYTHON_PN}-umalqurra | ||