From c808f9086b2ef2dd13b3b3c3ed3a38d67a473ff7 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Fri, 30 Oct 2020 15:08:39 +0200 Subject: [PATCH] python3-dateparser: Upgrade 0.7.6 -> 1.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upgrade to release 1.0.0: - Drop support for Python 2.7 and pypy - Now DateDataParser.get_date_data() returns a DateData object instead of a dict - From now wrong settings are not silenced and raise SettingValidationError - Now dateparser.parse() is deterministic and doesn't try previous locales. Also, DateDataParser.get_date_data() doesn't try the previous locales by default - Remove the 'base-formats' parser - Extract the 'no-spaces-time' parser from the 'absolute-time' parser and make it an optional parser - Remove numeral_translation_data - Remove the undocumented SKIP_TOKENS_PARSER and FUZZY settings - Remove support for using strings in date_formats - The undocumented ExactLanguageSearch class has been moved to the private scope and some internal methods have changed - Changes in dateparser.utils: normalize_unicode() doesn't accept bytes as input and convert_to_unicode has been deprecated - Add Python 3.9 support - Detect hours separated with a period/dot - Add support for "decade" - Add support for the hijri calendar in Python ≥ 3.6 - New logo! - Improve the README and docs - Fix the "calendars" extra - Fix leap years when PREFER_DATES_FROM is set - Fix STRICT_PARSING setting in no-spaces-time parser - Consider RETURN_AS_TIME_PERIOD setting for relative-time parser - Parse the 24hr time format with meridian info - Other small improvements Signed-off-by: Leon Anavi Acked-by: Trevor Gamblin Signed-off-by: Khem Raj --- ...ython3-dateparser_0.7.6.bb => python3-dateparser_1.0.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-python/recipes-devtools/python/{python3-dateparser_0.7.6.bb => python3-dateparser_1.0.0.bb} (79%) diff --git a/meta-python/recipes-devtools/python/python3-dateparser_0.7.6.bb b/meta-python/recipes-devtools/python/python3-dateparser_1.0.0.bb similarity index 79% rename from meta-python/recipes-devtools/python/python3-dateparser_0.7.6.bb rename to meta-python/recipes-devtools/python/python3-dateparser_1.0.0.bb index e4683911e2..e3691dd83a 100644 --- a/meta-python/recipes-devtools/python/python3-dateparser_0.7.6.bb +++ b/meta-python/recipes-devtools/python/python3-dateparser_1.0.0.bb @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/scrapinghub/dateparser" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=3d3ed25571191e7aa3f55d0a6efe0051" -SRC_URI[md5sum] = "78b4bf317f9b844631562abad5ce040b" -SRC_URI[sha256sum] = "e875efd8c57c85c2d02b238239878db59ff1971f5a823457fcc69e493bf6ebfa" +SRC_URI[md5sum] = "24a06a429597239004d47e6b93991aaf" +SRC_URI[sha256sum] = "159cc4e01a593706a15cd4e269a0b3345edf3aef8bf9278a57dac8adf5bf1e4a" PYPI_PACKAGE = "dateparser"