prefect-client 3.4.1.dev2__py3-none-any.whl → 3.4.1.dev4__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/_experimental/bundles/__init__.py +1 -1
- prefect/_internal/schemas/validators.py +5 -1
- prefect/events/clients.py +4 -4
- prefect/flows.py +79 -28
- prefect/runner/runner.py +24 -16
- prefect/utilities/dockerutils.py +18 -8
- prefect/utilities/importtools.py +12 -4
- {prefect_client-3.4.1.dev2.dist-info → prefect_client-3.4.1.dev4.dist-info}/METADATA +1 -1
- {prefect_client-3.4.1.dev2.dist-info → prefect_client-3.4.1.dev4.dist-info}/RECORD +12 -12
- {prefect_client-3.4.1.dev2.dist-info → prefect_client-3.4.1.dev4.dist-info}/WHEEL +0 -0
- {prefect_client-3.4.1.dev2.dist-info → prefect_client-3.4.1.dev4.dist-info}/licenses/LICENSE +0 -0
prefect/_build_info.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# Generated by versioningit
|
2
|
-
__version__ = "3.4.1.
|
3
|
-
__build_date__ = "2025-05-
|
4
|
-
__git_commit__ = "
|
2
|
+
__version__ = "3.4.1.dev4"
|
3
|
+
__build_date__ = "2025-05-07 08:09:04.443127+00:00"
|
4
|
+
__git_commit__ = "15e90f75877628d769414cb3382d3aa5b30b50a5"
|
5
5
|
__dirty__ = False
|
@@ -38,6 +38,7 @@ MM = TypeVar("MM", bound=MutableMapping[str, Any])
|
|
38
38
|
|
39
39
|
LOWERCASE_LETTERS_NUMBERS_AND_DASHES_ONLY_REGEX = "^[a-z0-9-]*$"
|
40
40
|
LOWERCASE_LETTERS_NUMBERS_AND_UNDERSCORES_REGEX = "^[a-z0-9_]*$"
|
41
|
+
SLUG_REGEX = "^[a-z0-9]+([_-]+[a-z0-9]+)*$"
|
41
42
|
|
42
43
|
|
43
44
|
@overload
|
@@ -647,7 +648,10 @@ def validate_variable_name(value: None) -> None: ...
|
|
647
648
|
|
648
649
|
def validate_variable_name(value: Optional[str]) -> Optional[str]:
|
649
650
|
if value is not None:
|
650
|
-
|
651
|
+
if not bool(re.match(SLUG_REGEX, value)):
|
652
|
+
raise ValueError(
|
653
|
+
"Variable name must only contain lowercase letters, numbers, dashes, and underscores"
|
654
|
+
)
|
651
655
|
return value
|
652
656
|
|
653
657
|
|
prefect/events/clients.py
CHANGED
@@ -251,8 +251,8 @@ class EventsClient(abc.ABC):
|
|
251
251
|
|
252
252
|
async def __aexit__(
|
253
253
|
self,
|
254
|
-
exc_type: Optional[Type[
|
255
|
-
exc_val: Optional[
|
254
|
+
exc_type: Optional[Type[BaseException]],
|
255
|
+
exc_val: Optional[BaseException],
|
256
256
|
exc_tb: Optional[TracebackType],
|
257
257
|
) -> None:
|
258
258
|
del self._in_context
|
@@ -360,8 +360,8 @@ class PrefectEventsClient(EventsClient):
|
|
360
360
|
|
361
361
|
async def __aexit__(
|
362
362
|
self,
|
363
|
-
exc_type: Optional[Type[
|
364
|
-
exc_val: Optional[
|
363
|
+
exc_type: Optional[Type[BaseException]],
|
364
|
+
exc_val: Optional[BaseException],
|
365
365
|
exc_tb: Optional[TracebackType],
|
366
366
|
) -> None:
|
367
367
|
self._websocket = None
|
prefect/flows.py
CHANGED
@@ -27,6 +27,7 @@ from typing import (
|
|
27
27
|
Coroutine,
|
28
28
|
Generic,
|
29
29
|
Iterable,
|
30
|
+
List,
|
30
31
|
NoReturn,
|
31
32
|
Optional,
|
32
33
|
Protocol,
|
@@ -2309,8 +2310,9 @@ def load_flow_from_entrypoint(
|
|
2309
2310
|
Extract a flow object from a script at an entrypoint by running all of the code in the file.
|
2310
2311
|
|
2311
2312
|
Args:
|
2312
|
-
entrypoint: a string in the format `<path_to_script>:<flow_func_name>`
|
2313
|
-
|
2313
|
+
entrypoint: a string in the format `<path_to_script>:<flow_func_name>`
|
2314
|
+
or a string in the format `<path_to_script>:<class_name>.<flow_method_name>`
|
2315
|
+
or a module path to a flow function
|
2314
2316
|
use_placeholder_flow: if True, use a placeholder Flow object if the actual flow object
|
2315
2317
|
cannot be loaded from the entrypoint (e.g. dependencies are missing)
|
2316
2318
|
|
@@ -2700,26 +2702,55 @@ def load_placeholder_flow(entrypoint: str, raises: Exception) -> Flow[P, Any]:
|
|
2700
2702
|
|
2701
2703
|
def safe_load_flow_from_entrypoint(entrypoint: str) -> Optional[Flow[P, Any]]:
|
2702
2704
|
"""
|
2703
|
-
|
2705
|
+
Safely load a Prefect flow from an entrypoint string. Returns None if loading fails.
|
2704
2706
|
|
2705
2707
|
Args:
|
2706
|
-
entrypoint:
|
2707
|
-
|
2708
|
+
entrypoint (str): A string identifying the flow to load. Can be in one of the following formats:
|
2709
|
+
- `<path_to_script>:<flow_func_name>`
|
2710
|
+
- `<path_to_script>:<class_name>.<flow_method_name>`
|
2711
|
+
- `<module_path>.<flow_func_name>`
|
2712
|
+
|
2713
|
+
Returns:
|
2714
|
+
Optional[Flow]: The loaded Prefect flow object, or None if loading fails due to errors
|
2715
|
+
(e.g. unresolved dependencies, syntax errors, or missing objects).
|
2708
2716
|
"""
|
2709
|
-
|
2710
|
-
|
2711
|
-
if ":" in entrypoint
|
2712
|
-
path = entrypoint.rsplit(":")[0]
|
2717
|
+
func_or_cls_def, source_code, parts = _entrypoint_definition_and_source(entrypoint)
|
2718
|
+
|
2719
|
+
path = entrypoint.rsplit(":", maxsplit=1)[0] if ":" in entrypoint else None
|
2713
2720
|
namespace = safe_load_namespace(source_code, filepath=path)
|
2714
|
-
if func_def.name in namespace:
|
2715
|
-
return namespace[func_def.name]
|
2716
|
-
else:
|
2717
|
-
# If the function is not in the namespace, if may be due to missing dependencies
|
2718
|
-
# for the function. We will attempt to compile each annotation and default value
|
2719
|
-
# and remove them from the function definition to see if the function can be
|
2720
|
-
# compiled without them.
|
2721
2721
|
|
2722
|
-
|
2722
|
+
if parts[0] not in namespace:
|
2723
|
+
# If the object is not in the namespace, it may be due to missing dependencies
|
2724
|
+
# in annotations or default values. We will attempt to sanitize them by removing
|
2725
|
+
# anything that cannot be compiled, and then recompile the function or class.
|
2726
|
+
if isinstance(func_or_cls_def, (ast.FunctionDef, ast.AsyncFunctionDef)):
|
2727
|
+
return _sanitize_and_load_flow(func_or_cls_def, namespace)
|
2728
|
+
elif (
|
2729
|
+
isinstance(func_or_cls_def, ast.ClassDef)
|
2730
|
+
and len(parts) >= 2
|
2731
|
+
and func_or_cls_def.name == parts[0]
|
2732
|
+
):
|
2733
|
+
method_name = parts[1]
|
2734
|
+
method_def = next(
|
2735
|
+
(
|
2736
|
+
stmt
|
2737
|
+
for stmt in func_or_cls_def.body
|
2738
|
+
if isinstance(stmt, (ast.FunctionDef, ast.AsyncFunctionDef))
|
2739
|
+
and stmt.name == method_name
|
2740
|
+
),
|
2741
|
+
None,
|
2742
|
+
)
|
2743
|
+
if method_def is not None:
|
2744
|
+
return _sanitize_and_load_flow(method_def, namespace)
|
2745
|
+
else:
|
2746
|
+
return None
|
2747
|
+
|
2748
|
+
obj = namespace.get(parts[0])
|
2749
|
+
for part in parts[1:]:
|
2750
|
+
obj = getattr(obj, part, None)
|
2751
|
+
if obj is None:
|
2752
|
+
return None
|
2753
|
+
return obj
|
2723
2754
|
|
2724
2755
|
|
2725
2756
|
def _sanitize_and_load_flow(
|
@@ -2853,7 +2884,7 @@ def load_flow_arguments_from_entrypoint(
|
|
2853
2884
|
or a module path to a flow function
|
2854
2885
|
"""
|
2855
2886
|
|
2856
|
-
func_def, source_code = _entrypoint_definition_and_source(entrypoint)
|
2887
|
+
func_def, source_code, _ = _entrypoint_definition_and_source(entrypoint)
|
2857
2888
|
path = None
|
2858
2889
|
if ":" in entrypoint:
|
2859
2890
|
path = entrypoint.rsplit(":")[0]
|
@@ -2930,26 +2961,45 @@ def is_entrypoint_async(entrypoint: str) -> bool:
|
|
2930
2961
|
Returns:
|
2931
2962
|
True if the function is asynchronous, False otherwise.
|
2932
2963
|
"""
|
2933
|
-
func_def, _ = _entrypoint_definition_and_source(entrypoint)
|
2964
|
+
func_def, _, _ = _entrypoint_definition_and_source(entrypoint)
|
2934
2965
|
return isinstance(func_def, ast.AsyncFunctionDef)
|
2935
2966
|
|
2936
2967
|
|
2937
2968
|
def _entrypoint_definition_and_source(
|
2938
2969
|
entrypoint: str,
|
2939
|
-
) -> Tuple[Union[ast.FunctionDef, ast.AsyncFunctionDef], str]:
|
2970
|
+
) -> Tuple[Union[ast.FunctionDef, ast.AsyncFunctionDef, ast.ClassDef], str, List[str]]:
|
2971
|
+
"""
|
2972
|
+
Resolves and parses the source definition of a given entrypoint.
|
2973
|
+
|
2974
|
+
The entrypoint can be provided in one of the following formats:
|
2975
|
+
- '<path_to_script>:<flow_func_name>'
|
2976
|
+
- '<path_to_script>:<class_name>.<flow_method_name>'
|
2977
|
+
- '<module_path.to.flow_function>'
|
2978
|
+
|
2979
|
+
Returns:
|
2980
|
+
A tuple containing:
|
2981
|
+
- The AST node (FunctionDef, AsyncFunctionDef, or ClassDef) of the base object.
|
2982
|
+
- The full source code of the file or module as a string.
|
2983
|
+
- A list of attribute access parts from the object path (e.g., ['MyFlowClass', 'run']).
|
2984
|
+
|
2985
|
+
Raises:
|
2986
|
+
ValueError: If the module or target object cannot be found.
|
2987
|
+
"""
|
2940
2988
|
if ":" in entrypoint:
|
2941
|
-
|
2942
|
-
path, func_name = entrypoint.rsplit(":", maxsplit=1)
|
2989
|
+
path, object_path = entrypoint.rsplit(":", maxsplit=1)
|
2943
2990
|
source_code = Path(path).read_text()
|
2944
2991
|
else:
|
2945
|
-
path,
|
2992
|
+
path, object_path = entrypoint.rsplit(".", maxsplit=1)
|
2946
2993
|
spec = importlib.util.find_spec(path)
|
2947
2994
|
if not spec or not spec.origin:
|
2948
2995
|
raise ValueError(f"Could not find module {path!r}")
|
2949
2996
|
source_code = Path(spec.origin).read_text()
|
2950
2997
|
|
2951
2998
|
parsed_code = ast.parse(source_code)
|
2952
|
-
|
2999
|
+
parts = object_path.split(".")
|
3000
|
+
base_name = parts[0]
|
3001
|
+
|
3002
|
+
base_def = next(
|
2953
3003
|
(
|
2954
3004
|
node
|
2955
3005
|
for node in ast.walk(parsed_code)
|
@@ -2958,14 +3008,15 @@ def _entrypoint_definition_and_source(
|
|
2958
3008
|
(
|
2959
3009
|
ast.FunctionDef,
|
2960
3010
|
ast.AsyncFunctionDef,
|
3011
|
+
ast.ClassDef, # flow can be staticmethod/classmethod
|
2961
3012
|
),
|
2962
3013
|
)
|
2963
|
-
and node.name ==
|
3014
|
+
and node.name == base_name
|
2964
3015
|
),
|
2965
3016
|
None,
|
2966
3017
|
)
|
2967
3018
|
|
2968
|
-
if not
|
2969
|
-
raise ValueError(f"Could not find
|
3019
|
+
if not base_def:
|
3020
|
+
raise ValueError(f"Could not find object {base_name!r} in {path!r}")
|
2970
3021
|
|
2971
|
-
return
|
3022
|
+
return base_def, source_code, parts
|
prefect/runner/runner.py
CHANGED
@@ -89,9 +89,9 @@ from prefect.client.schemas.objects import (
|
|
89
89
|
)
|
90
90
|
from prefect.client.schemas.objects import Flow as APIFlow
|
91
91
|
from prefect.events import DeploymentTriggerTypes, TriggerTypes
|
92
|
+
from prefect.events.clients import EventsClient, get_events_client
|
92
93
|
from prefect.events.related import tags_as_related_resources
|
93
|
-
from prefect.events.schemas.events import RelatedResource
|
94
|
-
from prefect.events.utilities import emit_event
|
94
|
+
from prefect.events.schemas.events import Event, RelatedResource, Resource
|
95
95
|
from prefect.exceptions import Abort, ObjectNotFound
|
96
96
|
from prefect.flows import Flow, FlowStateHook, load_flow_from_flow_run
|
97
97
|
from prefect.logging.loggers import PrefectLogAdapter, flow_run_logger, get_logger
|
@@ -224,6 +224,7 @@ class Runner:
|
|
224
224
|
if self.heartbeat_seconds is not None and self.heartbeat_seconds < 30:
|
225
225
|
raise ValueError("Heartbeat must be 30 seconds or greater.")
|
226
226
|
self._heartbeat_task: asyncio.Task[None] | None = None
|
227
|
+
self._events_client: EventsClient = get_events_client(checkpoint_every=1)
|
227
228
|
|
228
229
|
self._exit_stack = AsyncExitStack()
|
229
230
|
self._limiter: anyio.CapacityLimiter | None = None
|
@@ -1005,7 +1006,7 @@ class Runner:
|
|
1005
1006
|
)
|
1006
1007
|
|
1007
1008
|
flow, deployment = await self._get_flow_and_deployment(flow_run)
|
1008
|
-
self._emit_flow_run_cancelled_event(
|
1009
|
+
await self._emit_flow_run_cancelled_event(
|
1009
1010
|
flow_run=flow_run, flow=flow, deployment=deployment
|
1010
1011
|
)
|
1011
1012
|
run_logger.info(f"Cancelled flow run '{flow_run.name}'!")
|
@@ -1064,14 +1065,18 @@ class Runner:
|
|
1064
1065
|
related = [RelatedResource.model_validate(r) for r in related]
|
1065
1066
|
related += tags_as_related_resources(set(tags))
|
1066
1067
|
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1068
|
+
await self._events_client.emit(
|
1069
|
+
Event(
|
1070
|
+
event="prefect.flow-run.heartbeat",
|
1071
|
+
resource=Resource(
|
1072
|
+
{
|
1073
|
+
"prefect.resource.id": f"prefect.flow-run.{flow_run.id}",
|
1074
|
+
"prefect.resource.name": flow_run.name,
|
1075
|
+
"prefect.version": __version__,
|
1076
|
+
}
|
1077
|
+
),
|
1078
|
+
related=related,
|
1079
|
+
)
|
1075
1080
|
)
|
1076
1081
|
|
1077
1082
|
def _event_resource(self):
|
@@ -1083,7 +1088,7 @@ class Runner:
|
|
1083
1088
|
"prefect.version": __version__,
|
1084
1089
|
}
|
1085
1090
|
|
1086
|
-
def _emit_flow_run_cancelled_event(
|
1091
|
+
async def _emit_flow_run_cancelled_event(
|
1087
1092
|
self,
|
1088
1093
|
flow_run: "FlowRun",
|
1089
1094
|
flow: "Optional[APIFlow]",
|
@@ -1118,10 +1123,12 @@ class Runner:
|
|
1118
1123
|
related = [RelatedResource.model_validate(r) for r in related]
|
1119
1124
|
related += tags_as_related_resources(set(tags))
|
1120
1125
|
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1124
|
-
|
1126
|
+
await self._events_client.emit(
|
1127
|
+
Event(
|
1128
|
+
event="prefect.runner.cancelled-flow-run",
|
1129
|
+
resource=Resource(self._event_resource()),
|
1130
|
+
related=related,
|
1131
|
+
)
|
1125
1132
|
)
|
1126
1133
|
self._logger.debug(f"Emitted flow run heartbeat event for {flow_run.id}")
|
1127
1134
|
|
@@ -1502,6 +1509,7 @@ class Runner:
|
|
1502
1509
|
)
|
1503
1510
|
)
|
1504
1511
|
await self._exit_stack.enter_async_context(self._client)
|
1512
|
+
await self._exit_stack.enter_async_context(self._events_client)
|
1505
1513
|
|
1506
1514
|
if not hasattr(self, "_runs_task_group") or not self._runs_task_group:
|
1507
1515
|
self._runs_task_group: anyio.abc.TaskGroup = anyio.create_task_group()
|
prefect/utilities/dockerutils.py
CHANGED
@@ -495,10 +495,11 @@ def parse_image_tag(name: str) -> tuple[str, Optional[str]]:
|
|
495
495
|
"""
|
496
496
|
Parse Docker Image String
|
497
497
|
|
498
|
-
- If a tag exists, this function parses and returns the image registry and tag,
|
498
|
+
- If a tag or digest exists, this function parses and returns the image registry and tag/digest,
|
499
499
|
separately as a tuple.
|
500
500
|
- Example 1: 'prefecthq/prefect:latest' -> ('prefecthq/prefect', 'latest')
|
501
501
|
- Example 2: 'hostname.io:5050/folder/subfolder:latest' -> ('hostname.io:5050/folder/subfolder', 'latest')
|
502
|
+
- Example 3: 'prefecthq/prefect@sha256:abc123' -> ('prefecthq/prefect', 'sha256:abc123')
|
502
503
|
- Supports parsing Docker Image strings that follow Docker Image Specification v1.1.0
|
503
504
|
- Image building tools typically enforce this standard
|
504
505
|
|
@@ -506,26 +507,35 @@ def parse_image_tag(name: str) -> tuple[str, Optional[str]]:
|
|
506
507
|
name (str): Name of Docker Image
|
507
508
|
|
508
509
|
Return:
|
509
|
-
tuple: image registry, image tag
|
510
|
+
tuple: image registry, image tag/digest
|
510
511
|
"""
|
511
512
|
tag = None
|
512
513
|
name_parts = name.split("/")
|
513
|
-
|
514
|
-
# -
|
514
|
+
|
515
|
+
# First handles the simplest image names (DockerHub-based, index-free, potentially with a tag or digest)
|
516
|
+
# - Example: simplename:latest or simplename@sha256:abc123
|
515
517
|
if len(name_parts) == 1:
|
516
|
-
if "
|
518
|
+
if "@" in name_parts[0]:
|
519
|
+
image_name, tag = name_parts[0].split("@")
|
520
|
+
elif ":" in name_parts[0]:
|
517
521
|
image_name, tag = name_parts[0].split(":")
|
522
|
+
|
518
523
|
else:
|
519
524
|
image_name = name_parts[0]
|
520
525
|
else:
|
521
526
|
# 1. Separates index (hostname.io or prefecthq) from path:tag (folder/subfolder:latest or prefect:latest)
|
522
|
-
# 2. Separates path and tag (if
|
523
|
-
# 3. Reunites index and path (without tag) as image name
|
527
|
+
# 2. Separates path and tag/digest (if exists)
|
528
|
+
# 3. Reunites index and path (without tag/digest) as image name
|
524
529
|
index_name = name_parts[0]
|
525
530
|
image_path = "/".join(name_parts[1:])
|
526
|
-
|
531
|
+
|
532
|
+
if "@" in image_path:
|
533
|
+
image_path, tag = image_path.split("@")
|
534
|
+
elif ":" in image_path:
|
527
535
|
image_path, tag = image_path.split(":")
|
536
|
+
|
528
537
|
image_name = f"{index_name}/{image_path}"
|
538
|
+
|
529
539
|
return image_name, tag
|
530
540
|
|
531
541
|
|
prefect/utilities/importtools.py
CHANGED
@@ -145,17 +145,19 @@ def import_object(import_path: str) -> Any:
|
|
145
145
|
- module.object
|
146
146
|
- module:object
|
147
147
|
- /path/to/script.py:object
|
148
|
+
- module:object.method
|
149
|
+
- /path/to/script.py:object.method
|
148
150
|
|
149
151
|
This function is not thread safe as it modifies the 'sys' module during execution.
|
150
152
|
"""
|
151
153
|
if ".py:" in import_path:
|
152
|
-
script_path,
|
154
|
+
script_path, object_path = import_path.rsplit(":", 1)
|
153
155
|
module = load_script_as_module(script_path)
|
154
156
|
else:
|
155
157
|
if ":" in import_path:
|
156
|
-
module_name,
|
158
|
+
module_name, object_path = import_path.rsplit(":", 1)
|
157
159
|
elif "." in import_path:
|
158
|
-
module_name,
|
160
|
+
module_name, object_path = import_path.rsplit(".", 1)
|
159
161
|
else:
|
160
162
|
raise ValueError(
|
161
163
|
f"Invalid format for object import. Received {import_path!r}."
|
@@ -163,7 +165,13 @@ def import_object(import_path: str) -> Any:
|
|
163
165
|
|
164
166
|
module = load_module(module_name)
|
165
167
|
|
166
|
-
|
168
|
+
# Handle nested object/method access
|
169
|
+
parts = object_path.split(".")
|
170
|
+
obj = module
|
171
|
+
for part in parts:
|
172
|
+
obj = getattr(obj, part)
|
173
|
+
|
174
|
+
return obj
|
167
175
|
|
168
176
|
|
169
177
|
class DelayedImportErrorModule(ModuleType):
|
@@ -1,7 +1,7 @@
|
|
1
1
|
prefect/.prefectignore,sha256=awSprvKT0vI8a64mEOLrMxhxqcO-b0ERQeYpA2rNKVQ,390
|
2
2
|
prefect/__init__.py,sha256=iCdcC5ZmeewikCdnPEP6YBAjPNV5dvfxpYCTpw30Hkw,3685
|
3
3
|
prefect/__main__.py,sha256=WFjw3kaYJY6pOTA7WDOgqjsz8zUEUZHCcj3P5wyVa-g,66
|
4
|
-
prefect/_build_info.py,sha256=
|
4
|
+
prefect/_build_info.py,sha256=QcFtoY6cMGvzPP_9d4qiiLL87zxdwx9Cl4dxKsa7CyA,185
|
5
5
|
prefect/_result_records.py,sha256=S6QmsODkehGVSzbMm6ig022PYbI6gNKz671p_8kBYx4,7789
|
6
6
|
prefect/_versioning.py,sha256=YqR5cxXrY4P6LM1Pmhd8iMo7v_G2KJpGNdsf4EvDFQ0,14132
|
7
7
|
prefect/_waiters.py,sha256=Ia2ITaXdHzevtyWIgJoOg95lrEXQqNEOquHvw3T33UQ,9026
|
@@ -15,7 +15,7 @@ prefect/exceptions.py,sha256=wZLQQMRB_DyiYkeEdIC5OKwbba5A94Dlnics-lrWI7A,11581
|
|
15
15
|
prefect/filesystems.py,sha256=v5YqGB4uXf9Ew2VuB9VCSkawvYMMVvEtZf7w1VmAmr8,18036
|
16
16
|
prefect/flow_engine.py,sha256=hZpTYEtwTPMtwVoTCrfD93igN7rlKeG_0kyCvdU4aYE,58876
|
17
17
|
prefect/flow_runs.py,sha256=d3jfmrIPP3C19IJREvpkuN6fxksX3Lzo-LlHOB-_E2I,17419
|
18
|
-
prefect/flows.py,sha256=
|
18
|
+
prefect/flows.py,sha256=3dm4IjIpoKHqgdQACeZPvqbqoRd7XjSnsCyOC3nm5H8,120916
|
19
19
|
prefect/futures.py,sha256=5wVHLtniwG2au0zuxM-ucqo08x0B5l6e8Z1Swbe8R9s,23720
|
20
20
|
prefect/main.py,sha256=8V-qLB4GjEVCkGRgGXeaIk-JIXY8Z9FozcNluj4Sm9E,2589
|
21
21
|
prefect/plugins.py,sha256=FPRLR2mWVBMuOnlzeiTD9krlHONZH2rtYLD753JQDNQ,2516
|
@@ -33,7 +33,7 @@ prefect/transactions.py,sha256=uIoPNudzJzH6NrMJhrgr5lyh6JxOJQqT1GvrXt69yNw,26068
|
|
33
33
|
prefect/variables.py,sha256=dCK3vX7TbkqXZhnNT_v7rcGh3ISRqoR6pJVLpoll3Js,8342
|
34
34
|
prefect/_experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
35
|
prefect/_experimental/lineage.py,sha256=8LssReoq7eLtQScUCu-7FCtrWoRZstXKRdpO0PxgbKg,9958
|
36
|
-
prefect/_experimental/bundles/__init__.py,sha256=
|
36
|
+
prefect/_experimental/bundles/__init__.py,sha256=rrYdykd2XWNWi0g9ZJmBzh8wMZrRo0F1dnoBtzNyI0A,7127
|
37
37
|
prefect/_experimental/bundles/execute.py,sha256=1_v3tGFQlQEj9eOLsGG5EHtNcwyxmOU-LYYoK1LP9pA,635
|
38
38
|
prefect/_experimental/sla/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
39
39
|
prefect/_experimental/sla/client.py,sha256=XTkYHFZiBy_O7RgUyGEdl9MxaHP-6fEAKBk3ksNQobU,3611
|
@@ -66,7 +66,7 @@ prefect/_internal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
66
66
|
prefect/_internal/schemas/bases.py,sha256=JqcZazL5Cp2hZ8Hssu8R2SVXRxHfbdRbTqmvwDYSzyk,4291
|
67
67
|
prefect/_internal/schemas/fields.py,sha256=m4LrFNz8rA9uBhMk9VyQT6FIXmV_EVAW92hdXeSvHbY,837
|
68
68
|
prefect/_internal/schemas/serializers.py,sha256=G_RGHfObjisUiRvd29p-zc6W4bwt5rE1OdR6TXNrRhQ,825
|
69
|
-
prefect/_internal/schemas/validators.py,sha256
|
69
|
+
prefect/_internal/schemas/validators.py,sha256=Pe78HTN1TQQbpkLx66smzx2udv5rGxdaqn1ZsR1zlJs,19328
|
70
70
|
prefect/_vendor/croniter/__init__.py,sha256=NUFzdbyPcTQhIOFtzmFM0nbClAvBbKh2mlnTBa6NfHU,523
|
71
71
|
prefect/_vendor/croniter/croniter.py,sha256=eJ2HzStNAYV-vNiLOgDXl4sYWWHOsSA0dgwbkQoguhY,53009
|
72
72
|
prefect/blocks/__init__.py,sha256=D0hB72qMfgqnBB2EMZRxUxlX9yLfkab5zDChOwJZmkY,220
|
@@ -148,7 +148,7 @@ prefect/docker/__init__.py,sha256=z6wdc6UFfiBG2jb9Jk64uCWVM04JKVWeVyDWwuuon8M,52
|
|
148
148
|
prefect/docker/docker_image.py,sha256=bR_pEq5-FDxlwTj8CP_7nwZ_MiGK6KxIi8v7DRjy1Kg,3138
|
149
149
|
prefect/events/__init__.py,sha256=GtKl2bE--pJduTxelH2xy7SadlLJmmis8WR1EYixhuA,2094
|
150
150
|
prefect/events/actions.py,sha256=A7jS8bo4zWGnrt3QfSoQs0uYC1xfKXio3IfU0XtTb5s,9129
|
151
|
-
prefect/events/clients.py,sha256=
|
151
|
+
prefect/events/clients.py,sha256=e3A6cKxi-fG2TkFedaRuC472hIM3VgaVxI6mcPP41kY,27613
|
152
152
|
prefect/events/filters.py,sha256=2hVfzc3Rdgy0mBHDutWxT__LJY0zpVM8greWX3y6kjM,8233
|
153
153
|
prefect/events/related.py,sha256=CTeexYUmmA93V4gsR33GIFmw-SS-X_ouOpRg-oeq-BU,6672
|
154
154
|
prefect/events/utilities.py,sha256=ww34bTMENCNwcp6RhhgzG0KgXOvKGe0MKmBdSJ8NpZY,3043
|
@@ -185,7 +185,7 @@ prefect/logging/loggers.py,sha256=rwFJv0i3dhdKr25XX-xUkQy4Vv4dy18bTy366jrC0OQ,12
|
|
185
185
|
prefect/logging/logging.yml,sha256=tT7gTyC4NmngFSqFkCdHaw7R0GPNPDDsTCGZQByiJAQ,3169
|
186
186
|
prefect/runner/__init__.py,sha256=pQBd9wVrUVUDUFJlgiweKSnbahoBZwqnd2O2jkhrULY,158
|
187
187
|
prefect/runner/_observers.py,sha256=PpyXQL5bjp86AnDFEzcFPS5ayL6ExqcYgyuBMMQCO9Q,2183
|
188
|
-
prefect/runner/runner.py,sha256=
|
188
|
+
prefect/runner/runner.py,sha256=04-SK3rP4nd2PLNs5wSiRbtycnq7Lds8cBsWWM6V6NM,59865
|
189
189
|
prefect/runner/server.py,sha256=YRYFNoYddA9XfiTIYtudxrnD1vCX-PaOLhvyGUOb9AQ,11966
|
190
190
|
prefect/runner/storage.py,sha256=n-65YoEf7KNVInnmMPeP5TVFJOa2zOS8w9en9MHi6uo,31328
|
191
191
|
prefect/runner/submit.py,sha256=qOEj-NChQ6RYFV35hHEVMTklrNmKwaGs2mR78ku9H0o,9474
|
@@ -291,12 +291,12 @@ prefect/utilities/collections.py,sha256=c3nPLPWqIZQQdNuHs_nrbQJwuhQSX4ivUl-h9Ltz
|
|
291
291
|
prefect/utilities/compat.py,sha256=nnPA3lf2f4Y-l645tYFFNmj5NDPaYvjqa9pbGKZ3WKE,582
|
292
292
|
prefect/utilities/context.py,sha256=23SDMgdt07SjmB1qShiykHfGgiv55NBzdbMXM3fE9CI,1447
|
293
293
|
prefect/utilities/dispatch.py,sha256=u6GSGSO3_6vVoIqHVc849lsKkC-I1wUl6TX134GwRBo,6310
|
294
|
-
prefect/utilities/dockerutils.py,sha256=
|
294
|
+
prefect/utilities/dockerutils.py,sha256=6DLVyzE195IzeQSWERiK1t3bDMnYBLe0zXIpMQ4r0c0,21659
|
295
295
|
prefect/utilities/engine.py,sha256=LAqRMKM0lJphCHTMFKxRKNZzp_Y4l2PMUXmaFLdmvrQ,28951
|
296
296
|
prefect/utilities/filesystem.py,sha256=Pwesv71PGFhf3lPa1iFyMqZZprBjy9nEKCVxTkf_hXw,5710
|
297
297
|
prefect/utilities/generics.py,sha256=o77e8a5iwmrisOf42wLp2WI9YvSw2xDW4vFdpdEwr3I,543
|
298
298
|
prefect/utilities/hashing.py,sha256=7jRy26s46IJAFRmVnCnoK9ek9N4p_UfXxQQvu2tW6dM,2589
|
299
|
-
prefect/utilities/importtools.py,sha256=
|
299
|
+
prefect/utilities/importtools.py,sha256=Bgis-5EFaX8XekwiXa2Cr4jE76yiFBmp0mQ9iGZsVvU,17925
|
300
300
|
prefect/utilities/math.py,sha256=UPIdJMP13lCU3o0Yz98o4VDw3LTkkrsOAsvAdA3Xifc,2954
|
301
301
|
prefect/utilities/names.py,sha256=PcNp3IbSoJY6P3UiJDYDjpYQw6BYWtn6OarFDCq1dUE,1744
|
302
302
|
prefect/utilities/processutils.py,sha256=k_VD41Q0EBz-DP2lN7AcOkFGpYH3ekKGk4YV_OuvQc8,16255
|
@@ -319,7 +319,7 @@ prefect/workers/cloud.py,sha256=dPvG1jDGD5HSH7aM2utwtk6RaJ9qg13XjkA0lAIgQmY,287
|
|
319
319
|
prefect/workers/process.py,sha256=Yi5D0U5AQ51wHT86GdwtImXSefe0gJf3LGq4r4z9zwM,11090
|
320
320
|
prefect/workers/server.py,sha256=2pmVeJZiVbEK02SO6BEZaBIvHMsn6G8LzjW8BXyiTtk,1952
|
321
321
|
prefect/workers/utilities.py,sha256=VfPfAlGtTuDj0-Kb8WlMgAuOfgXCdrGAnKMapPSBrwc,2483
|
322
|
-
prefect_client-3.4.1.
|
323
|
-
prefect_client-3.4.1.
|
324
|
-
prefect_client-3.4.1.
|
325
|
-
prefect_client-3.4.1.
|
322
|
+
prefect_client-3.4.1.dev4.dist-info/METADATA,sha256=MGFEKoWTbDHQ_jlNcHTQ1oKdHbzNWuRs2tn0ETq9ZyU,7471
|
323
|
+
prefect_client-3.4.1.dev4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
324
|
+
prefect_client-3.4.1.dev4.dist-info/licenses/LICENSE,sha256=MCxsn8osAkzfxKC4CC_dLcUkU8DZLkyihZ8mGs3Ah3Q,11357
|
325
|
+
prefect_client-3.4.1.dev4.dist-info/RECORD,,
|
File without changes
|
{prefect_client-3.4.1.dev2.dist-info → prefect_client-3.4.1.dev4.dist-info}/licenses/LICENSE
RENAMED
File without changes
|