diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2024-12-24 17:26:11 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-12-24 08:23:08 -0800 |
commit | 6ab6892aaa0faab800a163eb11b63aa87c14050b (patch) | |
tree | 34e20f27bd1be07218d1ac21f9dcc3ed4fca4935 /meta-python/recipes-devtools/python/python3-croniter_6.0.0.bb | |
parent | c9b540e9e4328766af23632372c1cb5ef98dede8 (diff) | |
download | meta-openembedded-6ab6892aaa0faab800a163eb11b63aa87c14050b.tar.gz |
python3-croniter: upgrade 5.0.1 -> 6.0.0
Changelog:
==========
- Announce for now that croniter dev is ended (CRA).
- Rework timestamp_to_datetime to use whatever timezone
- Make datetime_to_timestamp & timestamp_to_datetime public
- Fix EPOCH calculation in case of non UTC & 32 bits based systems
- Apply isort formatter
- Reintegrate test_speed
- Apply black formatter
- Code quality changes
Remove unused _get_caller_globals_and_locals
Remove single-use bad_length
Remove unused days in proc_month
Use field_index over i for readability
Always use """ for docstrings
Make helper instance methods that do not use self static
Remove unusd call to sys.exc_info
Remove unused ALPHAS
Improve croniter.expand documentation
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-croniter_6.0.0.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-croniter_6.0.0.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-croniter_6.0.0.bb b/meta-python/recipes-devtools/python/python3-croniter_6.0.0.bb new file mode 100644 index 0000000000..201074e1e3 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-croniter_6.0.0.bb | |||
@@ -0,0 +1,16 @@ | |||
1 | DESCRIPTION = "croniter provides iteration for datetime object with cron like format" | ||
2 | SECTION = "devel/python" | ||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b8ee59850b882cbf623188489ea748e2" | ||
5 | |||
6 | PYPI_PACKAGE = "croniter" | ||
7 | |||
8 | SRC_URI[sha256sum] = "37c504b313956114a983ece2c2b07790b1f1094fe9d81cc94739214748255577" | ||
9 | |||
10 | inherit pypi setuptools3 | ||
11 | |||
12 | RDEPENDS:${PN} += " \ | ||
13 | python3-dateutil \ | ||
14 | python3-natsort \ | ||
15 | python3-pytz \ | ||
16 | " | ||