diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2021-04-08 14:53:28 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-04-13 08:06:07 -0700 |
commit | 159df278565891aad0e68f8628c6435c36638772 (patch) | |
tree | 44ce5dc4c16886d257fcef82d52ec906e327a80c /meta-python | |
parent | 5aaffd50a7df53f2b6b704a350d4a8cc37059eb5 (diff) | |
download | meta-openembedded-159df278565891aad0e68f8628c6435c36638772.tar.gz |
python3-croniter: Upgrade 1.0.10 -> 1.0.11
Upgrade to release 1.0.11:
- fix bug: bad case:0 6 30 3 *
- Add support for L in the day_of_week component. This enable
expressions like * * * * L4, which means last Thursday of the
month.
- Create CroniterUnsupportedSyntaxError exception for situations
where CRON syntax may be valid but some combinations of features
is not supported. Currently, this is used when the day_of_week
component has a combination of literal values and nth/last
syntax at the same time.
For example, 0 0 * * 1,L6 or 0 0 * * 15,sat#1 will both raise
this exception because of mixing literal days of the week with
nth-weekday or last-weekday syntax. This may impact existing
cron expressions in prior releases, because 0 0 * * 15,sat#1
was previously allowed but incorrectly handled.
- Update croniter_range() to allow an alternate croniter class to
be used. Helpful when using a custom class derived from croniter.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-croniter_1.0.11.bb (renamed from meta-python/recipes-devtools/python/python3-croniter_1.0.10.bb) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-croniter_1.0.10.bb b/meta-python/recipes-devtools/python/python3-croniter_1.0.11.bb index 6cd87fea9d..ca9bf71a56 100644 --- a/meta-python/recipes-devtools/python/python3-croniter_1.0.10.bb +++ b/meta-python/recipes-devtools/python/python3-croniter_1.0.11.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://docs/LICENSE;md5=b8ee59850b882cbf623188489ea748e2" | |||
5 | 5 | ||
6 | PYPI_PACKAGE = "croniter" | 6 | PYPI_PACKAGE = "croniter" |
7 | 7 | ||
8 | SRC_URI[sha256sum] = "364c48e393060295c3161588a6556d5c890b5c34299973c393adbe4488ca1ecb" | 8 | SRC_URI[sha256sum] = "cd89bcbed4d79f56bbf2c9415c2bbbfd09fadc8a59dbae3898fbca5bab34103d" |
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||