prefect-client 3.2.4__py3-none-any.whl → 3.2.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- prefect/_build_info.py +3 -3
- prefect/_internal/schemas/validators.py +1 -1
- prefect/_vendor/croniter/__init__.py +25 -0
- prefect/_vendor/croniter/croniter.py +1456 -0
- prefect/deployments/runner.py +14 -6
- {prefect_client-3.2.4.dist-info → prefect_client-3.2.5.dist-info}/METADATA +1 -2
- {prefect_client-3.2.4.dist-info → prefect_client-3.2.5.dist-info}/RECORD +9 -7
- {prefect_client-3.2.4.dist-info → prefect_client-3.2.5.dist-info}/WHEEL +0 -0
- {prefect_client-3.2.4.dist-info → prefect_client-3.2.5.dist-info}/licenses/LICENSE +0 -0
prefect/_build_info.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# Generated by versioningit
|
2
|
-
__version__ = "3.2.
|
3
|
-
__build_date__ = "2025-02-
|
4
|
-
__git_commit__ = "
|
2
|
+
__version__ = "3.2.5"
|
3
|
+
__build_date__ = "2025-02-19 03:24:41.213047+00:00"
|
4
|
+
__git_commit__ = "168280f75a7c7cbd871a0cfbbde8a8bfc1834026"
|
5
5
|
__dirty__ = False
|
@@ -294,7 +294,7 @@ def default_timezone(
|
|
294
294
|
|
295
295
|
|
296
296
|
def validate_cron_string(v: str) -> str:
|
297
|
-
from croniter import croniter
|
297
|
+
from prefect._vendor.croniter import croniter
|
298
298
|
|
299
299
|
# croniter allows "random" and "hashed" expressions
|
300
300
|
# which we do not support https://github.com/kiorky/croniter
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
from __future__ import absolute_import
|
3
|
+
|
4
|
+
from . import croniter as cron_m
|
5
|
+
from .croniter import (
|
6
|
+
DAY_FIELD,
|
7
|
+
HOUR_FIELD,
|
8
|
+
MINUTE_FIELD,
|
9
|
+
MONTH_FIELD,
|
10
|
+
OVERFLOW32B_MODE,
|
11
|
+
SECOND_FIELD,
|
12
|
+
UTC_DT,
|
13
|
+
YEAR_FIELD,
|
14
|
+
CroniterBadCronError,
|
15
|
+
CroniterBadDateError,
|
16
|
+
CroniterBadTypeRangeError,
|
17
|
+
CroniterError,
|
18
|
+
CroniterNotAlphaError,
|
19
|
+
CroniterUnsupportedSyntaxError,
|
20
|
+
croniter,
|
21
|
+
croniter_range,
|
22
|
+
datetime_to_timestamp,
|
23
|
+
)
|
24
|
+
|
25
|
+
croniter.__name__ # make flake8 happy
|