prefect-client 2.18.3__py3-none-any.whl → 2.19.1__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/__init__.py +1 -15
- prefect/_internal/compatibility/experimental.py +11 -2
- prefect/_internal/concurrency/cancellation.py +2 -0
- prefect/_internal/schemas/validators.py +10 -0
- prefect/_vendor/starlette/testclient.py +1 -1
- prefect/blocks/notifications.py +6 -6
- prefect/client/base.py +244 -1
- prefect/client/cloud.py +4 -2
- prefect/client/orchestration.py +515 -106
- prefect/client/schemas/actions.py +58 -8
- prefect/client/schemas/objects.py +15 -1
- prefect/client/schemas/responses.py +19 -0
- prefect/client/schemas/schedules.py +1 -1
- prefect/client/utilities.py +2 -2
- prefect/concurrency/asyncio.py +34 -4
- prefect/concurrency/sync.py +40 -6
- prefect/context.py +2 -2
- prefect/engine.py +2 -2
- prefect/events/clients.py +2 -2
- prefect/flows.py +91 -17
- prefect/infrastructure/process.py +0 -17
- prefect/logging/formatters.py +1 -4
- prefect/new_flow_engine.py +137 -168
- prefect/new_task_engine.py +137 -202
- prefect/runner/__init__.py +1 -1
- prefect/runner/runner.py +2 -107
- prefect/settings.py +21 -0
- prefect/tasks.py +76 -57
- prefect/types/__init__.py +27 -5
- prefect/utilities/annotations.py +1 -8
- prefect/utilities/asyncutils.py +4 -0
- prefect/utilities/engine.py +106 -1
- prefect/utilities/schema_tools/__init__.py +6 -1
- prefect/utilities/schema_tools/validation.py +25 -8
- prefect/utilities/timeout.py +34 -0
- prefect/workers/base.py +7 -3
- prefect/workers/process.py +0 -17
- {prefect_client-2.18.3.dist-info → prefect_client-2.19.1.dist-info}/METADATA +1 -1
- {prefect_client-2.18.3.dist-info → prefect_client-2.19.1.dist-info}/RECORD +42 -41
- {prefect_client-2.18.3.dist-info → prefect_client-2.19.1.dist-info}/LICENSE +0 -0
- {prefect_client-2.18.3.dist-info → prefect_client-2.19.1.dist-info}/WHEEL +0 -0
- {prefect_client-2.18.3.dist-info → prefect_client-2.19.1.dist-info}/top_level.txt +0 -0
@@ -67,9 +67,10 @@ def validate(
|
|
67
67
|
raise_on_error: bool = False,
|
68
68
|
preprocess: bool = True,
|
69
69
|
ignore_required: bool = False,
|
70
|
+
allow_none_with_default: bool = False,
|
70
71
|
) -> List[JSONSchemaValidationError]:
|
71
72
|
if preprocess:
|
72
|
-
schema = preprocess_schema(schema)
|
73
|
+
schema = preprocess_schema(schema, allow_none_with_default)
|
73
74
|
|
74
75
|
if ignore_required:
|
75
76
|
schema = remove_nested_keys(["required"], schema)
|
@@ -187,7 +188,12 @@ def build_error_obj(errors: List[JSONSchemaValidationError]) -> Dict:
|
|
187
188
|
return error_response
|
188
189
|
|
189
190
|
|
190
|
-
def _fix_null_typing(
|
191
|
+
def _fix_null_typing(
|
192
|
+
key: str,
|
193
|
+
schema: Dict,
|
194
|
+
required_fields: List[str],
|
195
|
+
allow_none_with_default: bool = False,
|
196
|
+
):
|
191
197
|
"""
|
192
198
|
Pydantic V1 does not generate a valid Draft2020-12 schema for null types.
|
193
199
|
"""
|
@@ -195,7 +201,7 @@ def _fix_null_typing(key: str, schema: Dict, required_fields: List[str]):
|
|
195
201
|
key not in required_fields
|
196
202
|
and "type" in schema
|
197
203
|
and schema.get("type") != "null"
|
198
|
-
and "default" not in schema
|
204
|
+
and ("default" not in schema or allow_none_with_default)
|
199
205
|
):
|
200
206
|
schema["anyOf"] = [{"type": schema["type"]}, {"type": "null"}]
|
201
207
|
del schema["type"]
|
@@ -214,9 +220,13 @@ def _fix_tuple_items(schema: Dict):
|
|
214
220
|
del schema["items"]
|
215
221
|
|
216
222
|
|
217
|
-
def process_properties(
|
223
|
+
def process_properties(
|
224
|
+
properties: Dict,
|
225
|
+
required_fields: List[str],
|
226
|
+
allow_none_with_default: bool = False,
|
227
|
+
):
|
218
228
|
for key, schema in properties.items():
|
219
|
-
_fix_null_typing(key, schema, required_fields)
|
229
|
+
_fix_null_typing(key, schema, required_fields, allow_none_with_default)
|
220
230
|
_fix_tuple_items(schema)
|
221
231
|
|
222
232
|
if "properties" in schema:
|
@@ -224,17 +234,24 @@ def process_properties(properties, required_fields):
|
|
224
234
|
process_properties(schema["properties"], required_fields)
|
225
235
|
|
226
236
|
|
227
|
-
def preprocess_schema(
|
237
|
+
def preprocess_schema(
|
238
|
+
schema: Dict,
|
239
|
+
allow_none_with_default: bool = False,
|
240
|
+
):
|
228
241
|
schema = deepcopy(schema)
|
229
242
|
|
230
243
|
if "properties" in schema:
|
231
244
|
required_fields = schema.get("required", [])
|
232
|
-
process_properties(
|
245
|
+
process_properties(
|
246
|
+
schema["properties"], required_fields, allow_none_with_default
|
247
|
+
)
|
233
248
|
|
234
249
|
if "definitions" in schema: # Also process definitions for reused models
|
235
250
|
for definition in (schema["definitions"] or {}).values():
|
236
251
|
if "properties" in definition:
|
237
252
|
required_fields = definition.get("required", [])
|
238
|
-
process_properties(
|
253
|
+
process_properties(
|
254
|
+
definition["properties"], required_fields, allow_none_with_default
|
255
|
+
)
|
239
256
|
|
240
257
|
return schema
|
@@ -0,0 +1,34 @@
|
|
1
|
+
from asyncio import CancelledError
|
2
|
+
from contextlib import contextmanager
|
3
|
+
from typing import Optional
|
4
|
+
|
5
|
+
from prefect._internal.concurrency.cancellation import (
|
6
|
+
cancel_async_after,
|
7
|
+
cancel_sync_after,
|
8
|
+
)
|
9
|
+
|
10
|
+
|
11
|
+
@contextmanager
|
12
|
+
def timeout_async(seconds: Optional[float] = None):
|
13
|
+
if seconds is None:
|
14
|
+
yield
|
15
|
+
return
|
16
|
+
|
17
|
+
try:
|
18
|
+
with cancel_async_after(timeout=seconds):
|
19
|
+
yield
|
20
|
+
except CancelledError:
|
21
|
+
raise TimeoutError(f"Scope timed out after {seconds} second(s).")
|
22
|
+
|
23
|
+
|
24
|
+
@contextmanager
|
25
|
+
def timeout(seconds: Optional[float] = None):
|
26
|
+
if seconds is None:
|
27
|
+
yield
|
28
|
+
return
|
29
|
+
|
30
|
+
try:
|
31
|
+
with cancel_sync_after(timeout=seconds):
|
32
|
+
yield
|
33
|
+
except CancelledError:
|
34
|
+
raise TimeoutError(f"Scope timed out after {seconds} second(s).")
|
prefect/workers/base.py
CHANGED
@@ -836,15 +836,19 @@ class BaseWorker(abc.ABC):
|
|
836
836
|
was created from a deployment with a storage block.
|
837
837
|
"""
|
838
838
|
if flow_run.deployment_id:
|
839
|
+
assert (
|
840
|
+
self._client and self._client._started
|
841
|
+
), "Client must be started to check flow run deployment."
|
839
842
|
deployment = await self._client.read_deployment(flow_run.deployment_id)
|
840
843
|
if deployment.storage_document_id:
|
841
844
|
raise ValueError(
|
842
845
|
f"Flow run {flow_run.id!r} was created from deployment"
|
843
846
|
f" {deployment.name!r} which is configured with a storage block."
|
844
|
-
" Please use an"
|
845
|
-
" agent to execute this flow run."
|
847
|
+
" Please use an agent to execute this flow run."
|
846
848
|
)
|
847
849
|
|
850
|
+
#
|
851
|
+
|
848
852
|
async def _submit_run(self, flow_run: "FlowRun") -> None:
|
849
853
|
"""
|
850
854
|
Submits a given flow run for execution by the worker.
|
@@ -894,7 +898,7 @@ class BaseWorker(abc.ABC):
|
|
894
898
|
self._submitting_flow_run_ids.remove(flow_run.id)
|
895
899
|
|
896
900
|
async def _submit_run_and_capture_errors(
|
897
|
-
self, flow_run: "FlowRun", task_status: anyio.abc.TaskStatus = None
|
901
|
+
self, flow_run: "FlowRun", task_status: Optional[anyio.abc.TaskStatus] = None
|
898
902
|
) -> Union[BaseWorkerResult, Exception]:
|
899
903
|
run_logger = self.get_flow_run_logger(flow_run)
|
900
904
|
|
prefect/workers/process.py
CHANGED
@@ -14,7 +14,6 @@ For more information about work pools and workers,
|
|
14
14
|
checkout out the [Prefect docs](/concepts/work-pools/).
|
15
15
|
"""
|
16
16
|
|
17
|
-
import asyncio
|
18
17
|
import contextlib
|
19
18
|
import os
|
20
19
|
import signal
|
@@ -27,7 +26,6 @@ from typing import TYPE_CHECKING, Dict, Optional, Tuple
|
|
27
26
|
|
28
27
|
import anyio
|
29
28
|
import anyio.abc
|
30
|
-
import sniffio
|
31
29
|
|
32
30
|
from prefect._internal.pydantic import HAS_PYDANTIC_V2
|
33
31
|
|
@@ -56,20 +54,6 @@ if sys.platform == "win32":
|
|
56
54
|
STATUS_CONTROL_C_EXIT = 0xC000013A
|
57
55
|
|
58
56
|
|
59
|
-
def _use_threaded_child_watcher():
|
60
|
-
if (
|
61
|
-
sys.version_info < (3, 8)
|
62
|
-
and sniffio.current_async_library() == "asyncio"
|
63
|
-
and sys.platform != "win32"
|
64
|
-
):
|
65
|
-
from prefect.utilities.compat import ThreadedChildWatcher
|
66
|
-
|
67
|
-
# Python < 3.8 does not use a `ThreadedChildWatcher` by default which can
|
68
|
-
# lead to errors in tests on unix as the previous default `SafeChildWatcher`
|
69
|
-
# is not compatible with threaded event loops.
|
70
|
-
asyncio.get_event_loop_policy().set_child_watcher(ThreadedChildWatcher())
|
71
|
-
|
72
|
-
|
73
57
|
def _infrastructure_pid_from_process(process: anyio.abc.Process) -> str:
|
74
58
|
hostname = socket.gethostname()
|
75
59
|
return f"{hostname}:{process.pid}"
|
@@ -168,7 +152,6 @@ class ProcessWorker(BaseWorker):
|
|
168
152
|
if sys.platform == "win32":
|
169
153
|
kwargs["creationflags"] = subprocess.CREATE_NEW_PROCESS_GROUP
|
170
154
|
|
171
|
-
_use_threaded_child_watcher()
|
172
155
|
flow_run_logger.info("Opening process...")
|
173
156
|
|
174
157
|
working_dir_ctx = (
|
@@ -1,41 +1,41 @@
|
|
1
1
|
prefect/.prefectignore,sha256=awSprvKT0vI8a64mEOLrMxhxqcO-b0ERQeYpA2rNKVQ,390
|
2
|
-
prefect/__init__.py,sha256=
|
2
|
+
prefect/__init__.py,sha256=w5kE6x_3s2IFnu5Uxq1qdzGHR6oPXxDEoLQ2muG7B_I,4558
|
3
3
|
prefect/_version.py,sha256=I9JsXwt7BjAAbMEZgtmE3a6dJ2jqV-wqWto9D6msb3k,24597
|
4
4
|
prefect/agent.py,sha256=HaGT0yh3fciluYpO99dVHo_LHq7N2cYLuWNrEV_kPV8,27789
|
5
5
|
prefect/artifacts.py,sha256=mreaBE4qMoXkjc9YI-5cAxoye7ixraHB_zr8GTK9xPU,8694
|
6
6
|
prefect/automations.py,sha256=rjVtQblBlKhD_q24bG6zbxJeb_XQJnodMlhr565aZJY,4853
|
7
|
-
prefect/context.py,sha256=
|
8
|
-
prefect/engine.py,sha256=
|
7
|
+
prefect/context.py,sha256=Hgn3rIjCbqfCmGnZzV_eZ2FwxGjEhaZjUw_nppqNQSA,18189
|
8
|
+
prefect/engine.py,sha256=hGaxEyJB0OSb_fc2sRsoL550DGOeuwttWOY3dQR6wZw,90418
|
9
9
|
prefect/exceptions.py,sha256=Fyl-GXvF9OuKHtsyn5EhWg81pkU1UG3DFHsI1JzhOQE,10851
|
10
10
|
prefect/filesystems.py,sha256=XniPSdBAqywj43X7GyfuWJQIbz07QJ5Y3cVNLhIF3lQ,35260
|
11
11
|
prefect/flow_runs.py,sha256=mFHLavZk1yZ62H3UazuNDBZWAF7AqKttA4rMcHgsVSw,3119
|
12
|
-
prefect/flows.py,sha256=
|
12
|
+
prefect/flows.py,sha256=8eE3n_uOb7gs65STLaSFd8832_o9RdOLtRpqkY6FU7c,73247
|
13
13
|
prefect/futures.py,sha256=RaWfYIXtH7RsWxQ5QWTTlAzwtVV8XWpXaZT_hLq35vQ,12590
|
14
14
|
prefect/manifests.py,sha256=sTM7j8Us5d49zaydYKWsKb7zJ96v1ChkLkLeR0GFYD8,683
|
15
|
-
prefect/new_flow_engine.py,sha256=
|
16
|
-
prefect/new_task_engine.py,sha256=
|
15
|
+
prefect/new_flow_engine.py,sha256=A1adTWTBAwPCn6ay003Jsoc2SdYgHV4AcJo1bmpa_7Y,16039
|
16
|
+
prefect/new_task_engine.py,sha256=UpKIPtKD5cfyrrc8kQxi-2MLKztlbkfzRsyX27vHGv8,14812
|
17
17
|
prefect/plugins.py,sha256=0C-D3-dKi06JZ44XEGmLjCiAkefbE_lKX-g3urzdbQ4,4163
|
18
18
|
prefect/profiles.toml,sha256=Fs8hD_BdWHZgAijgk8pK_Zx-Pm-YFixqDIfEP6fM-qU,38
|
19
19
|
prefect/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
20
|
prefect/results.py,sha256=JXuySIfJb9weg49A2YsI3ZxoPoAAYcXn7ajui_8vMbE,25502
|
21
21
|
prefect/serializers.py,sha256=MsMTPgo6APq-pN1pcLD9COdVFnBS9E3WaMuaKgpeJdQ,8821
|
22
|
-
prefect/settings.py,sha256=
|
22
|
+
prefect/settings.py,sha256=gFVXmGLapnkIV7hQvRJMJ6472UZJr6gqZYk1xwcqgnQ,74931
|
23
23
|
prefect/states.py,sha256=B38zIXnqc8cmw3GPxmMQ4thX6pXb6UtG4PoTZ5thGQs,21036
|
24
24
|
prefect/task_engine.py,sha256=_2I7XLwoT_nNhpzTMa_52aQKjsDoaW6WpzwIHYEWZS0,2598
|
25
25
|
prefect/task_runners.py,sha256=HXUg5UqhZRN2QNBqMdGE1lKhwFhT8TaRN75ScgLbnw8,11012
|
26
26
|
prefect/task_server.py,sha256=3f6rDIOXmhhF_MDHGk5owaU9lyLHsR-zgCp6pIHEUyo,11075
|
27
|
-
prefect/tasks.py,sha256=
|
27
|
+
prefect/tasks.py,sha256=od2jbE62RBh8wEtG8UgGH7ABfk8lyTXSvhoO7kbzWeI,55567
|
28
28
|
prefect/variables.py,sha256=4r5gVGpAZxLWHj5JoNZJTuktX1-u3ENzVp3t4M6FDgs,3815
|
29
29
|
prefect/_internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
30
|
prefect/_internal/_logging.py,sha256=HvNHY-8P469o5u4LYEDBTem69XZEt1QUeUaLToijpak,810
|
31
31
|
prefect/_internal/pytz.py,sha256=47Y28jKxUvgw7vaEvN-Xl0laiVdMLXC8IRUEk7oHz1Q,13749
|
32
32
|
prefect/_internal/compatibility/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
33
33
|
prefect/_internal/compatibility/deprecated.py,sha256=ORtcd5nIUQURxgaFW1MJ6OwTbmsGtwypjTyHTkVLHB4,11578
|
34
|
-
prefect/_internal/compatibility/experimental.py,sha256=
|
34
|
+
prefect/_internal/compatibility/experimental.py,sha256=qAf2Pp8vYVKi_0P29X5Dyy8qZ430rl2fXa9tXdqoYWk,7670
|
35
35
|
prefect/_internal/concurrency/__init__.py,sha256=ncKwi1NhE3umSFGSKRk9wEVKzN1z1ZD-fmY4EDZHH_U,2142
|
36
36
|
prefect/_internal/concurrency/api.py,sha256=nrNENVcoFNbzo-RwdVSjA6VtfrXFQWcjTGYoacGcd8k,8223
|
37
37
|
prefect/_internal/concurrency/calls.py,sha256=SVMR1yPTQJtBX095WfRk6cMTq4YKf_L6G77qtaTyN3I,15564
|
38
|
-
prefect/_internal/concurrency/cancellation.py,sha256=
|
38
|
+
prefect/_internal/concurrency/cancellation.py,sha256=N1SukD8W26bEx9cU5amdhiUDArWC3oGkTP7K7LpBubY,18277
|
39
39
|
prefect/_internal/concurrency/event_loop.py,sha256=rOxUa7e95xP4ionH3o0gRpUzzG6aZMQUituLpMTvTFo,2596
|
40
40
|
prefect/_internal/concurrency/inspection.py,sha256=GWFoSzgs8bZZGNN-Im9sQ-0t0Dqdn8EbwPR1UY3Mhro,3452
|
41
41
|
prefect/_internal/concurrency/primitives.py,sha256=kxCPD9yLtCeqt-JIHjevL4Zt5FvrF_Bam-Ucf41FX6k,2608
|
@@ -72,7 +72,7 @@ prefect/_internal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
72
72
|
prefect/_internal/schemas/bases.py,sha256=lEZWz4vG3vxmfiAXFJyCZXtAE6_zCTMuFCI7aa3fREU,9348
|
73
73
|
prefect/_internal/schemas/fields.py,sha256=vRUt-vy414-ERLQm_dqI8Gcz2X8r9AuYpleo6BF0kI0,2125
|
74
74
|
prefect/_internal/schemas/serializers.py,sha256=G_RGHfObjisUiRvd29p-zc6W4bwt5rE1OdR6TXNrRhQ,825
|
75
|
-
prefect/_internal/schemas/validators.py,sha256=
|
75
|
+
prefect/_internal/schemas/validators.py,sha256=9oJnTtBPnpnptBIZ2mos3dWw44vzcv8YtRJgdR_bSxs,32835
|
76
76
|
prefect/_vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
77
77
|
prefect/_vendor/fastapi/__init__.py,sha256=u-zfck662O4-Bsz91pZM53R53pVmdEQ1LUgf2hZenb0,1096
|
78
78
|
prefect/_vendor/fastapi/applications.py,sha256=72zqRql-QLOjk68Wmnx4F1aW9_UcDXZ-lf-COP3aL1c,40983
|
@@ -137,7 +137,7 @@ prefect/_vendor/starlette/schemas.py,sha256=TkdT44GEK33J4GrSQfMoXXyAqFcFRA1q4BNM
|
|
137
137
|
prefect/_vendor/starlette/staticfiles.py,sha256=YMNSlVSd8s9DLeZSwB607cFezRLCqDbQyksN8ggk-hU,9003
|
138
138
|
prefect/_vendor/starlette/status.py,sha256=lv40V7igYhk_ONySJzUzQ4T3gTgnvNLCOb846ZUONSE,6086
|
139
139
|
prefect/_vendor/starlette/templating.py,sha256=sOHUbxDT9PV_2yiZdhmE2NuJzLBLP0IUY0nM88T5sf8,9065
|
140
|
-
prefect/_vendor/starlette/testclient.py,sha256=
|
140
|
+
prefect/_vendor/starlette/testclient.py,sha256=Gdt9Wx_XjgxV2qMiPjarHGajIPKpUprmKfNjvA0J19I,29899
|
141
141
|
prefect/_vendor/starlette/types.py,sha256=GV42Vulsf4gkrP2KlmTlQRtg2ftSDyFQWnuplpdD7bY,1129
|
142
142
|
prefect/_vendor/starlette/websockets.py,sha256=o6ThDsCIFj5bZDlI5GYPH76ZQjIh_tz_Xpq1TGXdw1w,7473
|
143
143
|
prefect/_vendor/starlette/middleware/__init__.py,sha256=eq7IMsjLes9Z0NAhRPNUc5eO-QG9WMOwZ5Gx-lST200,558
|
@@ -156,29 +156,29 @@ prefect/blocks/abstract.py,sha256=AiAs0MC5JKCf0Xg0yofC5Qu2TZ52AjDMP1ntMGuP2dY,16
|
|
156
156
|
prefect/blocks/core.py,sha256=66pGFVPxtCCGWELqPXYqN8L0GoUXuUqv6jWw3Kk-tyY,43496
|
157
157
|
prefect/blocks/fields.py,sha256=ANOzbNyDCBIvm6ktgbLTMs7JW2Sf6CruyATjAW61ks0,1607
|
158
158
|
prefect/blocks/kubernetes.py,sha256=IN-hZkzIRvqjd_dzPZby3q8p7m2oUWqArBq24BU9cDg,4071
|
159
|
-
prefect/blocks/notifications.py,sha256=
|
159
|
+
prefect/blocks/notifications.py,sha256=raXBPidAfec7VCyLA1bb46RD06i0zPtVonWcXtkeOUU,27211
|
160
160
|
prefect/blocks/system.py,sha256=aIRiFKlXIQ1sMaqniMXYolFsx2IVN3taBMH3KCThB2I,3089
|
161
161
|
prefect/blocks/webhook.py,sha256=VzQ-qcRtW8MMuYEGYwFgt1QXtWedUtVmeTo7iE2UQ78,2008
|
162
162
|
prefect/client/__init__.py,sha256=yJ5FRF9RxNUio2V_HmyKCKw5G6CZO0h8cv6xA_Hkpcc,477
|
163
|
-
prefect/client/base.py,sha256=
|
164
|
-
prefect/client/cloud.py,sha256=
|
163
|
+
prefect/client/base.py,sha256=YSPeE7hV0NCuD6WzoAACDYGFK4Yq35d26pITZ3elNyY,24669
|
164
|
+
prefect/client/cloud.py,sha256=E54OAFr7bY5IXhhMBdjGwLQiR0eU-WWFoEEiOq2l53I,4104
|
165
165
|
prefect/client/collections.py,sha256=I9EgbTg4Fn57gn8vwP_WdDmgnATbx9gfkm2jjhCORjw,1037
|
166
166
|
prefect/client/constants.py,sha256=Z_GG8KF70vbbXxpJuqW5pLnwzujTVeHbcYYRikNmGH0,29
|
167
|
-
prefect/client/orchestration.py,sha256=
|
167
|
+
prefect/client/orchestration.py,sha256=O8DEbL7CP271MTVNlID8aRAl1xybfb6MwCUbYyjZejU,139211
|
168
168
|
prefect/client/subscriptions.py,sha256=3kqPH3F-CwyrR5wygCpJMjRjM_gcQjd54Qjih6FcLlA,3372
|
169
|
-
prefect/client/utilities.py,sha256=
|
169
|
+
prefect/client/utilities.py,sha256=7V4IkfC8x_OZuPXGvtIMmwZCOW63hSY8iVQkuRYTR6g,3079
|
170
170
|
prefect/client/schemas/__init__.py,sha256=KlyqFV-hMulMkNstBn_0ijoHoIwJZaBj6B1r07UmgvE,607
|
171
|
-
prefect/client/schemas/actions.py,sha256=
|
171
|
+
prefect/client/schemas/actions.py,sha256=npka1_fiJ_Y_GU6R_uv8wS2kGiJAu5XXqK5b6S0zy-8,27957
|
172
172
|
prefect/client/schemas/filters.py,sha256=gv57m0bHJqL7Ifsc_vAdRODFomaMVcrGXKAahOSBU4w,35598
|
173
|
-
prefect/client/schemas/objects.py,sha256=
|
174
|
-
prefect/client/schemas/responses.py,sha256=
|
175
|
-
prefect/client/schemas/schedules.py,sha256=
|
173
|
+
prefect/client/schemas/objects.py,sha256=VwCwegu238EobrWuo4WkXlzG0-_M6PXqvMT17F6VUfA,53031
|
174
|
+
prefect/client/schemas/responses.py,sha256=XAc95g3PRL9UIkH9_VMuv0ECHKdc19guBLmdt5KefkI,15325
|
175
|
+
prefect/client/schemas/schedules.py,sha256=ZF7fFbkcc8rVdx2MxE8DR0av3FUE9qDPjLreEuV8HfM,12193
|
176
176
|
prefect/client/schemas/sorting.py,sha256=EIQ6FUjUWMwk6fn6ckVLQLXOP-GI5kce7ftjUkDFWV0,2490
|
177
177
|
prefect/concurrency/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
178
|
-
prefect/concurrency/asyncio.py,sha256=
|
178
|
+
prefect/concurrency/asyncio.py,sha256=FSlx_4VbXD96qIBpspc26vIMg4ei0zViWKrqqNK99Co,4264
|
179
179
|
prefect/concurrency/events.py,sha256=agci0Y5S0SwZhENgXIG_lbsqh4om9oeU6E_GbtZ55wM,1797
|
180
180
|
prefect/concurrency/services.py,sha256=qk4y4H5UsUKz67BufZBJ3WXt2y8UEndXn6TxDkqPzeA,2549
|
181
|
-
prefect/concurrency/sync.py,sha256=
|
181
|
+
prefect/concurrency/sync.py,sha256=gXyiiA0bul7jjpHWPm6su8pFdBiMOekhu9FHnjiPWBQ,3339
|
182
182
|
prefect/deployments/__init__.py,sha256=dM866rOEz3BbAN_xaFMHj3Hw1oOFemBTZ2yxVE6IGoY,394
|
183
183
|
prefect/deployments/base.py,sha256=GST7fFAI2I6Cmp2waypNEosqaERQiau8CxTcGwIg4nk,16285
|
184
184
|
prefect/deployments/deployments.py,sha256=bYNmxU0yn2jzluGIr2tUkgRi73WGQ6gGbjb0GlD4EIk,41656
|
@@ -198,7 +198,7 @@ prefect/deprecated/packaging/orion.py,sha256=3vRudge_XI4JX3aVxtK2QQvfHQ836C2maNJ
|
|
198
198
|
prefect/deprecated/packaging/serializers.py,sha256=kkFNR8_w2C6zI5A1w_-lfbLVFlhn3SJ28i3T3WKBO94,5165
|
199
199
|
prefect/events/__init__.py,sha256=GtKl2bE--pJduTxelH2xy7SadlLJmmis8WR1EYixhuA,2094
|
200
200
|
prefect/events/actions.py,sha256=X72oHY4f_tstup7_Jv8qjSAwhQo3sHcJFaGoRhisVKA,9149
|
201
|
-
prefect/events/clients.py,sha256=
|
201
|
+
prefect/events/clients.py,sha256=cQAEqBebQ1XnmDlZ9tzyrDZW33Rrci3S9xJgo9EznVs,20401
|
202
202
|
prefect/events/filters.py,sha256=Y2gH6EyQTKj2Tj9Nudbjg-nUqrPaIbzAQ2zqKsPCiHc,8245
|
203
203
|
prefect/events/instrument.py,sha256=IhPBjs8n5xaAC_sPo_GfgppNLYWxIoX0l66WlkzQhlw,3715
|
204
204
|
prefect/events/related.py,sha256=WTygrgtmxXWVlLFey5wJqO45BjHcUMeZkUbXGGmBWfE,6831
|
@@ -215,7 +215,7 @@ prefect/infrastructure/__init__.py,sha256=Fm1Rhc4I7ZfJePpUAl1F4iNEtcDugoT650WXXt
|
|
215
215
|
prefect/infrastructure/base.py,sha256=s2nNbwXnqHV-sBy7LeZzV1IVjqAO0zv795HM4RHOvQI,10880
|
216
216
|
prefect/infrastructure/container.py,sha256=RuWqxSgwwoAxJ9FquYH12wEUizMQM9_b-e5p13ZVscI,31851
|
217
217
|
prefect/infrastructure/kubernetes.py,sha256=28DLYNomVj2edmtM1c0ksbGUkBd1GwOlIIMDdSaLPbw,35703
|
218
|
-
prefect/infrastructure/process.py,sha256=
|
218
|
+
prefect/infrastructure/process.py,sha256=ZclTVl55ygEItkfB-ARFEIIZW4bk9ImuQzMTFfQNrnE,11324
|
219
219
|
prefect/infrastructure/provisioners/__init__.py,sha256=e9rfFnLqqwjexvYoiRZIY-CEwK-7ZhCQm745Z-Uxon8,1666
|
220
220
|
prefect/infrastructure/provisioners/cloud_run.py,sha256=kqk8yRZ4gfGJLgCEJL8vNYvRyONe2Mc4e_0DHeEb0iM,17658
|
221
221
|
prefect/infrastructure/provisioners/container_instance.py,sha256=KgJ6-vbq32VLCBiYgrCeG68wa6DfJvA2AmJHCeOY5q8,41231
|
@@ -227,15 +227,15 @@ prefect/input/run_input.py,sha256=BknFCVcpS9b7Gjywv2-lLBg4JQf7rKnRJIVIxsEbdTg,18
|
|
227
227
|
prefect/logging/__init__.py,sha256=zx9f5_dWrR4DbcTOFBpNGOPoCZ1QcPFudr7zxb2XRpA,148
|
228
228
|
prefect/logging/configuration.py,sha256=bYqFJm0QgLz92Dub1Lbl3JONjjm0lTK149pNAGbxPdM,3467
|
229
229
|
prefect/logging/filters.py,sha256=9keHLN4-cpnsWcii1qU0RITNi9-m7pOhkJ_t0MtCM4k,1117
|
230
|
-
prefect/logging/formatters.py,sha256=
|
230
|
+
prefect/logging/formatters.py,sha256=EPppQgqvbsIoSDGZFUqHJj1XdL-dvXGZe4TEcuRtfOI,3996
|
231
231
|
prefect/logging/handlers.py,sha256=zypWVA9EbaKMimRnZWxjmYYmZE04pB7OP5zKwkrOYHQ,10685
|
232
232
|
prefect/logging/highlighters.py,sha256=BpSXOy0n3lFVvlKWa7jC-HetAiClFi9jnQtEq5-rgok,1681
|
233
233
|
prefect/logging/loggers.py,sha256=kfTpM0RIcWm87UBYKggzcv0xeFfbuSIjH_i4pXdAZlo,11485
|
234
234
|
prefect/logging/logging.yml,sha256=UkEewf0c3_dURI2uCU4RrxkhI5Devoa1s93fl7hilcg,3160
|
235
235
|
prefect/pydantic/__init__.py,sha256=BsW32X7fvl44J1JQer1tkEpfleMtL2kL5Uy1KmwWvso,2714
|
236
236
|
prefect/pydantic/main.py,sha256=ups_UULBhCPhB-E7X7-Qgbpor1oJdqChRzpD0ZYQH8A,839
|
237
|
-
prefect/runner/__init__.py,sha256=
|
238
|
-
prefect/runner/runner.py,sha256=
|
237
|
+
prefect/runner/__init__.py,sha256=7U-vAOXFkzMfRz1q8Uv6Otsvc0OrPYLLP44srwkJ_8s,89
|
238
|
+
prefect/runner/runner.py,sha256=Lj_N91SXzCdqhhXWZLNnwuyblpxTTtN52MKYLtM7fNY,44838
|
239
239
|
prefect/runner/server.py,sha256=mgjH5SPlj3xu0_pZHg15zw59OSJ5lIzTIZ101s281Oo,10655
|
240
240
|
prefect/runner/storage.py,sha256=iZey8Am51c1fZFpS9iVXWYpKiM_lSocvaJEOZVExhvA,22428
|
241
241
|
prefect/runner/submit.py,sha256=w53VdsqfwjW-M3e8hUAAoVlNrXsvGuuyGpEN0wi3vX0,8537
|
@@ -251,17 +251,17 @@ prefect/software/base.py,sha256=GV6a5RrLx3JaOg1RI44jZTsI_qbqNWbWF3uVO5csnHM,1464
|
|
251
251
|
prefect/software/conda.py,sha256=u5dTn0AcJlNq3o1UY-hA02WRT6e7xzA4pE-xiRvfItg,6695
|
252
252
|
prefect/software/pip.py,sha256=WMOo-uVu5Az5N-1lOG9hpW6uSscP__N1hn6Vi3ItJms,4039
|
253
253
|
prefect/software/python.py,sha256=EssQ16aMvWSzzWagtNPfjQLu9ehieRwN0iWeqpBVtRU,1753
|
254
|
-
prefect/types/__init__.py,sha256=
|
254
|
+
prefect/types/__init__.py,sha256=aZvlQ2uXl949sJ_khmxSVkRH3o6edo-eJ_GBGMBN5Yg,3134
|
255
255
|
prefect/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
256
|
-
prefect/utilities/annotations.py,sha256=
|
257
|
-
prefect/utilities/asyncutils.py,sha256=
|
256
|
+
prefect/utilities/annotations.py,sha256=bXB43j5Zsq5gaBcJe9qnszBlnNwCTwqSTgcu2OkkRLo,2776
|
257
|
+
prefect/utilities/asyncutils.py,sha256=1xpjGFs72vQTPXfG0ww1mfNBwp0-UbRICLGVeRuiqOg,17010
|
258
258
|
prefect/utilities/callables.py,sha256=vbgRqfd79iXbh4QhNX1Ig9MTIcj-aAgH5yLSqobd2sM,11657
|
259
259
|
prefect/utilities/collections.py,sha256=0v-NNXxYYzkUTCCNDMNB44AnDv9yj35UYouNraCqlo8,15449
|
260
260
|
prefect/utilities/compat.py,sha256=mNQZDnzyKaOqy-OV-DnmH_dc7CNF5nQgW_EsA4xMr7g,906
|
261
261
|
prefect/utilities/context.py,sha256=BThuUW94-IYgFYTeMIM9KMo8ShT3oiI7w5ajZHzU1j0,1377
|
262
262
|
prefect/utilities/dispatch.py,sha256=BSAuYf3uchA6giBB90Z9tsmnR94SAqHZMHl01fRuA64,5467
|
263
263
|
prefect/utilities/dockerutils.py,sha256=O5lIgCej5KGRYU2TC1NzNuIK595uOIWJilhZXYEVtOA,20180
|
264
|
-
prefect/utilities/engine.py,sha256=
|
264
|
+
prefect/utilities/engine.py,sha256=TKiYqpfgt4zopuI8yvh2e-V9GgLcRrh3TpKRhvLuHdw,25669
|
265
265
|
prefect/utilities/filesystem.py,sha256=M_TeZ1MftjBf7hDLWk-Iphir369TpJ1binMsBKiO9YE,4449
|
266
266
|
prefect/utilities/hashing.py,sha256=EOwZLmoIZImuSTxAvVqInabxJ-4RpEfYeg9e2EDQF8o,1752
|
267
267
|
prefect/utilities/importtools.py,sha256=isblzKv7EPo7HtnlKYpL4t-GJdtTjUSMmvXgXSMEVZM,11764
|
@@ -274,18 +274,19 @@ prefect/utilities/services.py,sha256=u0Gpdw5pYceaSLCqOihGyFb2AlMBYE2P9Ts9qRb3N9Q
|
|
274
274
|
prefect/utilities/slugify.py,sha256=57Vb14t13F3zm1P65KAu8nVeAz0iJCd1Qc5eMG-R5y8,169
|
275
275
|
prefect/utilities/templating.py,sha256=t32Gcsvvm8ibzdqXwcWzY7JkwftPn73FiiLYEnQWyKM,13237
|
276
276
|
prefect/utilities/text.py,sha256=eXGIsCcZ7h_6hy8T5GDQjL8GiKyktoOqavYub0QjgO4,445
|
277
|
+
prefect/utilities/timeout.py,sha256=nxmuPxROIT-i8gPffpARuxnxu58H0vkmbjTVIgef0_0,805
|
277
278
|
prefect/utilities/visualization.py,sha256=9Pc8ImgnBpnszWTFxYm42cmtHjNEAsGZ8ugkn8w_dJk,6501
|
278
|
-
prefect/utilities/schema_tools/__init__.py,sha256=
|
279
|
+
prefect/utilities/schema_tools/__init__.py,sha256=KsFsTEHQqgp89TkDpjggkgBBywoHQPxbx-m6YQhiNEI,322
|
279
280
|
prefect/utilities/schema_tools/hydration.py,sha256=RNuJK4Vd__V69gdQbaWSVhSkV0AUISfGzH_xd0p6Zh0,8291
|
280
|
-
prefect/utilities/schema_tools/validation.py,sha256=
|
281
|
+
prefect/utilities/schema_tools/validation.py,sha256=zZHL_UFxAlgaUzi-qsEOrhWtZ7EkFQvPkX_YN1EJNTo,8414
|
281
282
|
prefect/workers/__init__.py,sha256=6el2Q856CuRPa5Hdrbm9QyAWB_ovcT2bImSFsoWI46k,66
|
282
|
-
prefect/workers/base.py,sha256=
|
283
|
+
prefect/workers/base.py,sha256=LKIMS2DaQSQRV4rjbrMYeQnY-9rzgj_KWBRIq-8c5rg,45125
|
283
284
|
prefect/workers/block.py,sha256=5bdCuqT-4I-et_8ZLG2y1AODzYiCQwFiivhdt5NMEog,7635
|
284
|
-
prefect/workers/process.py,sha256=
|
285
|
+
prefect/workers/process.py,sha256=pPtCdA7fKQ4OsvoitT-cayZeh5HgLX4xBUYlb2Zad-Q,9475
|
285
286
|
prefect/workers/server.py,sha256=WVZJxR8nTMzK0ov0BD0xw5OyQpT26AxlXbsGQ1OrxeQ,1551
|
286
287
|
prefect/workers/utilities.py,sha256=VfPfAlGtTuDj0-Kb8WlMgAuOfgXCdrGAnKMapPSBrwc,2483
|
287
|
-
prefect_client-2.
|
288
|
-
prefect_client-2.
|
289
|
-
prefect_client-2.
|
290
|
-
prefect_client-2.
|
291
|
-
prefect_client-2.
|
288
|
+
prefect_client-2.19.1.dist-info/LICENSE,sha256=MCxsn8osAkzfxKC4CC_dLcUkU8DZLkyihZ8mGs3Ah3Q,11357
|
289
|
+
prefect_client-2.19.1.dist-info/METADATA,sha256=X5UJXDm0rxH08gKCwM0U4S6y3szNCNKyLqLAbTz_dNU,7401
|
290
|
+
prefect_client-2.19.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
291
|
+
prefect_client-2.19.1.dist-info/top_level.txt,sha256=MJZYJgFdbRc2woQCeB4vM6T33tr01TmkEhRcns6H_H4,8
|
292
|
+
prefect_client-2.19.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|