Bump python-crontab to 3.1.* (#12008)

This commit is contained in:
Nikita Sobolev
2024-05-23 12:02:03 +03:00
committed by GitHub
parent 933444d1a8
commit b8e35627f0
2 changed files with 2 additions and 1 deletions

View File

@@ -1,2 +1,2 @@
version = "3.0.*"
version = "3.1.*"
upstream_repository = "https://gitlab.com/doctormo/python-crontab"

View File

@@ -259,6 +259,7 @@ class CronSlice:
def __iter__(self) -> Iterator[int]: ...
def __len__(self) -> int: ...
def parse_value(self, val: str, sunday: int | None = ...) -> int | CronValue: ...
def test_value(self, value: str, sunday: int | None = None) -> str: ...
def get_cronvalue(value: int, enums: list[str]) -> int | CronValue: ...