15
0

- Update to 1.0.8:

* Update `_expand` to lowercase each component of the expression.
  * Fix _expand to reject int literals with underscores
  * Fix combination of star and invalid expression bugs
  * Security fix: fix overflow when using cron ranges
  * Fix #155: raise CroniterBadCronError when error syntax
  * Fix match when datetime has microseconds
  * Added Python 3.8 and 3.9 support

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-croniter?expand=0&rev=30
This commit is contained in:
2021-03-12 03:44:05 +00:00
committed by Git OBS Bridge
parent e894a87b1e
commit ef0dad86ba
4 changed files with 18 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-croniter
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,13 +18,13 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-croniter
Version: 0.3.36
Version: 1.0.8
Release: 0
Summary: Python iterators for datetime objects with cron-like format
License: MIT
Group: Development/Languages/Python
URL: http://github.com/kiorky/croniter
Source: https://files.pythonhosted.org/packages/source/c/croniter/croniter-%{version}.tar.gz
BuildRequires: %{python_module future}
BuildRequires: %{python_module natsort}
BuildRequires: %{python_module pytest >= 3.0.3}
BuildRequires: %{python_module python-dateutil}