prefect-client 2.18.0__py3-none-any.whl → 2.18.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/_internal/schemas/fields.py +31 -12
- prefect/blocks/core.py +1 -1
- prefect/blocks/notifications.py +2 -2
- prefect/blocks/system.py +2 -3
- prefect/client/orchestration.py +283 -22
- prefect/client/schemas/sorting.py +9 -0
- prefect/client/utilities.py +25 -3
- prefect/concurrency/asyncio.py +11 -5
- prefect/concurrency/events.py +3 -3
- prefect/concurrency/services.py +1 -1
- prefect/concurrency/sync.py +9 -5
- prefect/deployments/deployments.py +27 -18
- prefect/deployments/runner.py +34 -26
- prefect/engine.py +3 -1
- prefect/events/actions.py +2 -1
- prefect/events/cli/automations.py +47 -9
- prefect/events/clients.py +50 -18
- prefect/events/filters.py +30 -3
- prefect/events/instrument.py +40 -40
- prefect/events/related.py +2 -1
- prefect/events/schemas/automations.py +50 -5
- prefect/events/schemas/deployment_triggers.py +15 -227
- prefect/events/schemas/events.py +7 -7
- prefect/events/utilities.py +1 -1
- prefect/events/worker.py +10 -7
- prefect/flows.py +33 -18
- prefect/input/actions.py +9 -9
- prefect/input/run_input.py +49 -37
- prefect/new_flow_engine.py +293 -0
- prefect/new_task_engine.py +374 -0
- prefect/results.py +3 -2
- prefect/runner/runner.py +3 -2
- prefect/server/api/collections_data/views/aggregate-worker-metadata.json +44 -3
- prefect/settings.py +26 -0
- prefect/states.py +25 -19
- prefect/tasks.py +17 -0
- prefect/utilities/asyncutils.py +37 -0
- prefect/utilities/engine.py +6 -4
- prefect/utilities/schema_tools/validation.py +1 -1
- {prefect_client-2.18.0.dist-info → prefect_client-2.18.1.dist-info}/METADATA +1 -1
- {prefect_client-2.18.0.dist-info → prefect_client-2.18.1.dist-info}/RECORD +44 -43
- prefect/concurrency/common.py +0 -0
- {prefect_client-2.18.0.dist-info → prefect_client-2.18.1.dist-info}/LICENSE +0 -0
- {prefect_client-2.18.0.dist-info → prefect_client-2.18.1.dist-info}/WHEEL +0 -0
- {prefect_client-2.18.0.dist-info → prefect_client-2.18.1.dist-info}/top_level.txt +0 -0
prefect/tasks.py
CHANGED
@@ -36,6 +36,7 @@ from prefect.context import FlowRunContext, PrefectObjectRegistry
|
|
36
36
|
from prefect.futures import PrefectFuture
|
37
37
|
from prefect.results import ResultSerializer, ResultStorage
|
38
38
|
from prefect.settings import (
|
39
|
+
PREFECT_EXPERIMENTAL_ENABLE_NEW_ENGINE,
|
39
40
|
PREFECT_EXPERIMENTAL_ENABLE_TASK_SCHEDULING,
|
40
41
|
PREFECT_TASK_DEFAULT_RETRIES,
|
41
42
|
PREFECT_TASK_DEFAULT_RETRY_DELAY_SECONDS,
|
@@ -582,6 +583,22 @@ class Task(Generic[P, R]):
|
|
582
583
|
self.isasync, self.name, parameters, self.viz_return_value
|
583
584
|
)
|
584
585
|
|
586
|
+
# new engine currently only compatible with async tasks
|
587
|
+
if PREFECT_EXPERIMENTAL_ENABLE_NEW_ENGINE.value():
|
588
|
+
from prefect.new_task_engine import run_task
|
589
|
+
from prefect.utilities.asyncutils import run_sync
|
590
|
+
|
591
|
+
awaitable = run_task(
|
592
|
+
task=self,
|
593
|
+
parameters=parameters,
|
594
|
+
wait_for=wait_for,
|
595
|
+
return_type=return_type,
|
596
|
+
)
|
597
|
+
if self.isasync:
|
598
|
+
return awaitable
|
599
|
+
else:
|
600
|
+
return run_sync(awaitable)
|
601
|
+
|
585
602
|
if (
|
586
603
|
PREFECT_EXPERIMENTAL_ENABLE_TASK_SCHEDULING.value()
|
587
604
|
and not FlowRunContext.get()
|
prefect/utilities/asyncutils.py
CHANGED
@@ -1,11 +1,13 @@
|
|
1
1
|
"""
|
2
2
|
Utilities for interoperability with async functions and workers from various contexts.
|
3
3
|
"""
|
4
|
+
|
4
5
|
import asyncio
|
5
6
|
import ctypes
|
6
7
|
import inspect
|
7
8
|
import threading
|
8
9
|
import warnings
|
10
|
+
from concurrent.futures import ThreadPoolExecutor
|
9
11
|
from contextlib import asynccontextmanager
|
10
12
|
from functools import partial, wraps
|
11
13
|
from threading import Thread
|
@@ -78,6 +80,41 @@ def is_async_gen_fn(func):
|
|
78
80
|
return inspect.isasyncgenfunction(func)
|
79
81
|
|
80
82
|
|
83
|
+
def run_sync(coroutine: Coroutine[Any, Any, T]) -> T:
|
84
|
+
"""
|
85
|
+
Runs a coroutine from a synchronous context, either in the current event
|
86
|
+
loop or in a new one if there is no event loop running. The coroutine will
|
87
|
+
block until it is done. A thread will be spawned to run the event loop if
|
88
|
+
necessary, which allows coroutines to run in environments like Jupyter
|
89
|
+
notebooks where the event loop runs on the main thread.
|
90
|
+
|
91
|
+
Args:
|
92
|
+
coroutine: The coroutine to run.
|
93
|
+
|
94
|
+
Returns:
|
95
|
+
The return value of the coroutine.
|
96
|
+
|
97
|
+
Example:
|
98
|
+
Basic usage:
|
99
|
+
```python
|
100
|
+
async def my_async_function(x: int) -> int:
|
101
|
+
return x + 1
|
102
|
+
|
103
|
+
run_sync(my_async_function(1))
|
104
|
+
```
|
105
|
+
"""
|
106
|
+
try:
|
107
|
+
loop = asyncio.get_running_loop()
|
108
|
+
if loop.is_running():
|
109
|
+
with ThreadPoolExecutor() as executor:
|
110
|
+
future = executor.submit(asyncio.run, coroutine)
|
111
|
+
return future.result()
|
112
|
+
else:
|
113
|
+
return asyncio.run(coroutine)
|
114
|
+
except RuntimeError:
|
115
|
+
return asyncio.run(coroutine)
|
116
|
+
|
117
|
+
|
81
118
|
async def run_sync_in_worker_thread(
|
82
119
|
__fn: Callable[..., T], *args: Any, **kwargs: Any
|
83
120
|
) -> T:
|
prefect/utilities/engine.py
CHANGED
@@ -11,6 +11,7 @@ from typing import (
|
|
11
11
|
Iterable,
|
12
12
|
Optional,
|
13
13
|
Set,
|
14
|
+
TypeVar,
|
14
15
|
Union,
|
15
16
|
)
|
16
17
|
from uuid import UUID, uuid4
|
@@ -66,6 +67,7 @@ from prefect.utilities.text import truncated_to
|
|
66
67
|
API_HEALTHCHECKS = {}
|
67
68
|
UNTRACKABLE_TYPES = {bool, type(None), type(...), type(NotImplemented)}
|
68
69
|
engine_logger = get_logger("engine")
|
70
|
+
T = TypeVar("T")
|
69
71
|
|
70
72
|
|
71
73
|
async def collect_task_run_inputs(expr: Any, max_depth: int = -1) -> Set[TaskRunInput]:
|
@@ -308,11 +310,11 @@ async def resolve_inputs(
|
|
308
310
|
|
309
311
|
async def propose_state(
|
310
312
|
client: PrefectClient,
|
311
|
-
state: State,
|
313
|
+
state: State[object],
|
312
314
|
force: bool = False,
|
313
|
-
task_run_id: UUID = None,
|
314
|
-
flow_run_id: UUID = None,
|
315
|
-
) -> State:
|
315
|
+
task_run_id: Optional[UUID] = None,
|
316
|
+
flow_run_id: Optional[UUID] = None,
|
317
|
+
) -> State[object]:
|
316
318
|
"""
|
317
319
|
Propose a new state for a flow run or task run, invoking Prefect orchestration logic.
|
318
320
|
|
@@ -232,7 +232,7 @@ def preprocess_schema(schema):
|
|
232
232
|
process_properties(schema["properties"], required_fields)
|
233
233
|
|
234
234
|
if "definitions" in schema: # Also process definitions for reused models
|
235
|
-
for definition in schema["definitions"].values():
|
235
|
+
for definition in (schema["definitions"] or {}).values():
|
236
236
|
if "properties" in definition:
|
237
237
|
required_fields = definition.get("required", [])
|
238
238
|
process_properties(definition["properties"], required_fields)
|
@@ -4,24 +4,26 @@ 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/context.py,sha256=BMT8VbI5OmQPFll6I5BlP5lZYn8IoxFsuRjjkqu7wK4,18144
|
7
|
-
prefect/engine.py,sha256=
|
7
|
+
prefect/engine.py,sha256=fzBIleMz7QYM96ENov4t91L3dhrwHcK0AX9a-jL_uOE,89858
|
8
8
|
prefect/exceptions.py,sha256=Fyl-GXvF9OuKHtsyn5EhWg81pkU1UG3DFHsI1JzhOQE,10851
|
9
9
|
prefect/filesystems.py,sha256=XniPSdBAqywj43X7GyfuWJQIbz07QJ5Y3cVNLhIF3lQ,35260
|
10
10
|
prefect/flow_runs.py,sha256=mFHLavZk1yZ62H3UazuNDBZWAF7AqKttA4rMcHgsVSw,3119
|
11
|
-
prefect/flows.py,sha256=
|
11
|
+
prefect/flows.py,sha256=CxZeZ4GG590xraD_RpXkwmlF_l-8e4ezPYndyN9Aw0E,71097
|
12
12
|
prefect/futures.py,sha256=RaWfYIXtH7RsWxQ5QWTTlAzwtVV8XWpXaZT_hLq35vQ,12590
|
13
13
|
prefect/manifests.py,sha256=sTM7j8Us5d49zaydYKWsKb7zJ96v1ChkLkLeR0GFYD8,683
|
14
|
+
prefect/new_flow_engine.py,sha256=mYpAtpJjbTbEOliYzEL7J1pTaS992_Lt7PN0zROMD8w,10231
|
15
|
+
prefect/new_task_engine.py,sha256=h0RlSSXF54IgQWKTYHkJFWvux8EG6GV4xizPfMM2LaU,13264
|
14
16
|
prefect/plugins.py,sha256=0C-D3-dKi06JZ44XEGmLjCiAkefbE_lKX-g3urzdbQ4,4163
|
15
17
|
prefect/profiles.toml,sha256=Fs8hD_BdWHZgAijgk8pK_Zx-Pm-YFixqDIfEP6fM-qU,38
|
16
18
|
prefect/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
-
prefect/results.py,sha256=
|
19
|
+
prefect/results.py,sha256=JXuySIfJb9weg49A2YsI3ZxoPoAAYcXn7ajui_8vMbE,25502
|
18
20
|
prefect/serializers.py,sha256=MsMTPgo6APq-pN1pcLD9COdVFnBS9E3WaMuaKgpeJdQ,8821
|
19
|
-
prefect/settings.py,sha256=
|
20
|
-
prefect/states.py,sha256
|
21
|
+
prefect/settings.py,sha256=RCEX4un9gWQvuD0OTPpRqg26QiBQtdEiwKz9FAT-dh4,73687
|
22
|
+
prefect/states.py,sha256=B38zIXnqc8cmw3GPxmMQ4thX6pXb6UtG4PoTZ5thGQs,21036
|
21
23
|
prefect/task_engine.py,sha256=_2I7XLwoT_nNhpzTMa_52aQKjsDoaW6WpzwIHYEWZS0,2598
|
22
24
|
prefect/task_runners.py,sha256=HXUg5UqhZRN2QNBqMdGE1lKhwFhT8TaRN75ScgLbnw8,11012
|
23
25
|
prefect/task_server.py,sha256=3f6rDIOXmhhF_MDHGk5owaU9lyLHsR-zgCp6pIHEUyo,11075
|
24
|
-
prefect/tasks.py,sha256=
|
26
|
+
prefect/tasks.py,sha256=UsPaiSB0R8J8EpYe-ojt8SY3aXwAEGxxl7nLMkyA2ZY,51078
|
25
27
|
prefect/variables.py,sha256=4r5gVGpAZxLWHj5JoNZJTuktX1-u3ENzVp3t4M6FDgs,3815
|
26
28
|
prefect/_internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
27
29
|
prefect/_internal/_logging.py,sha256=HvNHY-8P469o5u4LYEDBTem69XZEt1QUeUaLToijpak,810
|
@@ -67,7 +69,7 @@ prefect/_internal/pydantic/utilities/model_validator.py,sha256=DpTtIp2On9H18tVRK
|
|
67
69
|
prefect/_internal/pydantic/utilities/type_adapter.py,sha256=rlQ77J263L570uIYKtX4Qud2Yyx9zCUH4j6Yec-0KcU,2352
|
68
70
|
prefect/_internal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
69
71
|
prefect/_internal/schemas/bases.py,sha256=lEZWz4vG3vxmfiAXFJyCZXtAE6_zCTMuFCI7aa3fREU,9348
|
70
|
-
prefect/_internal/schemas/fields.py,sha256=
|
72
|
+
prefect/_internal/schemas/fields.py,sha256=vRUt-vy414-ERLQm_dqI8Gcz2X8r9AuYpleo6BF0kI0,2125
|
71
73
|
prefect/_internal/schemas/serializers.py,sha256=G_RGHfObjisUiRvd29p-zc6W4bwt5rE1OdR6TXNrRhQ,825
|
72
74
|
prefect/_internal/schemas/validators.py,sha256=IIc4eiaVbfUjfW3A4n4PBhBfXJTdMoSY5Pcj-iS7INQ,32417
|
73
75
|
prefect/_vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -150,37 +152,36 @@ prefect/_vendor/starlette/middleware/trustedhost.py,sha256=fDi67anj2a7MGviC0RAWh
|
|
150
152
|
prefect/_vendor/starlette/middleware/wsgi.py,sha256=Ewk1cVDkcoXLVI2ZF0FEZLZCwCDjc0H7PnvWLlxurVY,5266
|
151
153
|
prefect/blocks/__init__.py,sha256=BUfh6gIwA6HEjRyVCAiv0he3M1zfM-oY-JrlBfeWeY8,182
|
152
154
|
prefect/blocks/abstract.py,sha256=AiAs0MC5JKCf0Xg0yofC5Qu2TZ52AjDMP1ntMGuP2dY,16311
|
153
|
-
prefect/blocks/core.py,sha256=
|
155
|
+
prefect/blocks/core.py,sha256=66pGFVPxtCCGWELqPXYqN8L0GoUXuUqv6jWw3Kk-tyY,43496
|
154
156
|
prefect/blocks/fields.py,sha256=ANOzbNyDCBIvm6ktgbLTMs7JW2Sf6CruyATjAW61ks0,1607
|
155
157
|
prefect/blocks/kubernetes.py,sha256=IN-hZkzIRvqjd_dzPZby3q8p7m2oUWqArBq24BU9cDg,4071
|
156
|
-
prefect/blocks/notifications.py,sha256=
|
157
|
-
prefect/blocks/system.py,sha256=
|
158
|
+
prefect/blocks/notifications.py,sha256=dpR15seC6a8Zw3ggFQSiE6OI9YKMEI2eL2pzn2woGKQ,27247
|
159
|
+
prefect/blocks/system.py,sha256=aIRiFKlXIQ1sMaqniMXYolFsx2IVN3taBMH3KCThB2I,3089
|
158
160
|
prefect/blocks/webhook.py,sha256=VzQ-qcRtW8MMuYEGYwFgt1QXtWedUtVmeTo7iE2UQ78,2008
|
159
161
|
prefect/client/__init__.py,sha256=yJ5FRF9RxNUio2V_HmyKCKw5G6CZO0h8cv6xA_Hkpcc,477
|
160
162
|
prefect/client/base.py,sha256=DFW2HWPLneBCesQDAiQfbu5KZQeVsc5DVwLGduMEeUE,15460
|
161
163
|
prefect/client/cloud.py,sha256=97wWyWefq4Ngjs06HefD04obVGp6gms1PPt2D_vPYMs,4072
|
162
164
|
prefect/client/collections.py,sha256=I9EgbTg4Fn57gn8vwP_WdDmgnATbx9gfkm2jjhCORjw,1037
|
163
165
|
prefect/client/constants.py,sha256=Z_GG8KF70vbbXxpJuqW5pLnwzujTVeHbcYYRikNmGH0,29
|
164
|
-
prefect/client/orchestration.py,sha256=
|
166
|
+
prefect/client/orchestration.py,sha256=Bxi3b-VATB1sYXdvnkOJeYDigURGyNSc-IWCXydvcKE,123510
|
165
167
|
prefect/client/subscriptions.py,sha256=3kqPH3F-CwyrR5wygCpJMjRjM_gcQjd54Qjih6FcLlA,3372
|
166
|
-
prefect/client/utilities.py,sha256=
|
168
|
+
prefect/client/utilities.py,sha256=VcqwaqSmfOMqtNd0YbGodpdvw7nl20VJPhZc6NG-AtA,3067
|
167
169
|
prefect/client/schemas/__init__.py,sha256=KlyqFV-hMulMkNstBn_0ijoHoIwJZaBj6B1r07UmgvE,607
|
168
170
|
prefect/client/schemas/actions.py,sha256=TXutc-QZiuCuAMk4h3TZx-hDSBx38PXjr-Atplasi8I,25992
|
169
171
|
prefect/client/schemas/filters.py,sha256=gv57m0bHJqL7Ifsc_vAdRODFomaMVcrGXKAahOSBU4w,35598
|
170
172
|
prefect/client/schemas/objects.py,sha256=rOk2SJ_nVss14b5DPr85kHb6Hc_IUeAEWG5r1MVrLEo,52281
|
171
173
|
prefect/client/schemas/responses.py,sha256=pUCjHox9DZdmxPBNANCcNzDVSA8q5TUOzl3oru995Cs,14665
|
172
174
|
prefect/client/schemas/schedules.py,sha256=lDD6L9guvVStvjFXDZ5TkdmWVEgVEVEwqOsD8Uc4dFI,12183
|
173
|
-
prefect/client/schemas/sorting.py,sha256=
|
175
|
+
prefect/client/schemas/sorting.py,sha256=EIQ6FUjUWMwk6fn6ckVLQLXOP-GI5kce7ftjUkDFWV0,2490
|
174
176
|
prefect/concurrency/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
175
|
-
prefect/concurrency/asyncio.py,sha256=
|
176
|
-
prefect/concurrency/
|
177
|
-
prefect/concurrency/
|
178
|
-
prefect/concurrency/
|
179
|
-
prefect/concurrency/sync.py,sha256=AChhkA6hykgnnPmIeOp87jauLL0p_lrSwMwUoeuYprI,2148
|
177
|
+
prefect/concurrency/asyncio.py,sha256=y2QIU5D7c3w-J03rXxabpDMm-qlB7trRZGHNWUOVBEo,3214
|
178
|
+
prefect/concurrency/events.py,sha256=agci0Y5S0SwZhENgXIG_lbsqh4om9oeU6E_GbtZ55wM,1797
|
179
|
+
prefect/concurrency/services.py,sha256=qk4y4H5UsUKz67BufZBJ3WXt2y8UEndXn6TxDkqPzeA,2549
|
180
|
+
prefect/concurrency/sync.py,sha256=Y-yUGQQIBaJbsJVEcMMLT2jWmSudJjYxkgRNw-cKD90,2283
|
180
181
|
prefect/deployments/__init__.py,sha256=dM866rOEz3BbAN_xaFMHj3Hw1oOFemBTZ2yxVE6IGoY,394
|
181
182
|
prefect/deployments/base.py,sha256=GST7fFAI2I6Cmp2waypNEosqaERQiau8CxTcGwIg4nk,16285
|
182
|
-
prefect/deployments/deployments.py,sha256=
|
183
|
-
prefect/deployments/runner.py,sha256=
|
183
|
+
prefect/deployments/deployments.py,sha256=bYNmxU0yn2jzluGIr2tUkgRi73WGQ6gGbjb0GlD4EIk,41656
|
184
|
+
prefect/deployments/runner.py,sha256=a2dxc84zCofZFXV47M2zfntqUaoAhGWvf7o0s3MjPws,44772
|
184
185
|
prefect/deployments/schedules.py,sha256=23GDCAKOP-aAEKGappwTrM4HU67ndVH7NR4Dq0neU_U,1884
|
185
186
|
prefect/deployments/steps/__init__.py,sha256=3pZWONAZzenDszqNQT3bmTFilnvjB6xMolMz9tr5pLw,229
|
186
187
|
prefect/deployments/steps/core.py,sha256=Cl6ord01GWEgfPRnirj8QoVvdTgZhzgg06vTWQqg-5k,6626
|
@@ -195,19 +196,19 @@ prefect/deprecated/packaging/file.py,sha256=i35iFB-OK-5-x5pO7gWLXoCNY6F7A3wTI0Tf
|
|
195
196
|
prefect/deprecated/packaging/orion.py,sha256=3vRudge_XI4JX3aVxtK2QQvfHQ836C2maNJ7P3ONXNE,2633
|
196
197
|
prefect/deprecated/packaging/serializers.py,sha256=kkFNR8_w2C6zI5A1w_-lfbLVFlhn3SJ28i3T3WKBO94,5165
|
197
198
|
prefect/events/__init__.py,sha256=GtKl2bE--pJduTxelH2xy7SadlLJmmis8WR1EYixhuA,2094
|
198
|
-
prefect/events/actions.py,sha256=
|
199
|
-
prefect/events/clients.py,sha256=
|
200
|
-
prefect/events/filters.py,sha256=
|
201
|
-
prefect/events/instrument.py,sha256=
|
202
|
-
prefect/events/related.py,sha256=
|
203
|
-
prefect/events/utilities.py,sha256=
|
204
|
-
prefect/events/worker.py,sha256=
|
199
|
+
prefect/events/actions.py,sha256=X72oHY4f_tstup7_Jv8qjSAwhQo3sHcJFaGoRhisVKA,9149
|
200
|
+
prefect/events/clients.py,sha256=TET085aJ9valwaHQhtqg5UWO0UrFwRhL14jOodycTJA,20376
|
201
|
+
prefect/events/filters.py,sha256=VaI2HZrYzMrX6lUZrPT9GaNZAa0XL0MiYtTBZfgGOx4,8219
|
202
|
+
prefect/events/instrument.py,sha256=IhPBjs8n5xaAC_sPo_GfgppNLYWxIoX0l66WlkzQhlw,3715
|
203
|
+
prefect/events/related.py,sha256=WTygrgtmxXWVlLFey5wJqO45BjHcUMeZkUbXGGmBWfE,6831
|
204
|
+
prefect/events/utilities.py,sha256=zEDmxJpg_stwOuZU4wKjOoOaKn1_9EyULEu9v8nUi6I,2632
|
205
|
+
prefect/events/worker.py,sha256=x1mq9ChaAdUdZpq5lJdRu9yuwiocZXpMuGRL1ZEUWW4,3547
|
205
206
|
prefect/events/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
206
|
-
prefect/events/cli/automations.py,sha256=
|
207
|
+
prefect/events/cli/automations.py,sha256=fG_3wEyTFh7a5N7KJOizrgOhVBp4UZ1ZgfbGQIRu3jE,6571
|
207
208
|
prefect/events/schemas/__init__.py,sha256=YUyTEY9yVEJAOXWLng7-WlgNlTlJ25kDNPey3pXkn4k,169
|
208
|
-
prefect/events/schemas/automations.py,sha256=
|
209
|
-
prefect/events/schemas/deployment_triggers.py,sha256=
|
210
|
-
prefect/events/schemas/events.py,sha256=
|
209
|
+
prefect/events/schemas/automations.py,sha256=X4PHqKraETWigXBXXaRYlvDYNUFQJDmnJqXx_NWf3rE,14119
|
210
|
+
prefect/events/schemas/deployment_triggers.py,sha256=Hm4rDevN807qqmdyzL9pU0JvB0ni9UhWQplvjajnRZE,9541
|
211
|
+
prefect/events/schemas/events.py,sha256=aIXIMR86rp2dDlLQAo_YSJ1I7gNa9PNT2K0McqrlUlA,9195
|
211
212
|
prefect/events/schemas/labelling.py,sha256=CzAry2clY6oa8fpSDE43mFtecFFaH3QYz-fqYiE7XdU,3229
|
212
213
|
prefect/infrastructure/__init__.py,sha256=Fm1Rhc4I7ZfJePpUAl1F4iNEtcDugoT650WXXt6xoCM,770
|
213
214
|
prefect/infrastructure/base.py,sha256=s2nNbwXnqHV-sBy7LeZzV1IVjqAO0zv795HM4RHOvQI,10880
|
@@ -220,8 +221,8 @@ prefect/infrastructure/provisioners/container_instance.py,sha256=KgJ6-vbq32VLCBi
|
|
220
221
|
prefect/infrastructure/provisioners/ecs.py,sha256=HOURoT3psIUZY1AI-t-l2mT74JdbpW6ORTLG_RxlCyo,47674
|
221
222
|
prefect/infrastructure/provisioners/modal.py,sha256=mLblDjWWszXXMXWXYzkR_5s3nFFL6c3GvVX-VmIeU5A,9035
|
222
223
|
prefect/input/__init__.py,sha256=TPJ9UfG9_SiBze23sQwU1MnWI8AgyEMNihotgTebFQ0,627
|
223
|
-
prefect/input/actions.py,sha256=
|
224
|
-
prefect/input/run_input.py,sha256=
|
224
|
+
prefect/input/actions.py,sha256=YfA9E3lFyH12UPNKGrX0fbWC-vZopndvQ4A6fojjh-k,3876
|
225
|
+
prefect/input/run_input.py,sha256=cs_vEMa8eg-cLuO3uEcCsWIOISk43MwUJHRKgE1nMnA,18639
|
225
226
|
prefect/logging/__init__.py,sha256=zx9f5_dWrR4DbcTOFBpNGOPoCZ1QcPFudr7zxb2XRpA,148
|
226
227
|
prefect/logging/configuration.py,sha256=bYqFJm0QgLz92Dub1Lbl3JONjjm0lTK149pNAGbxPdM,3467
|
227
228
|
prefect/logging/filters.py,sha256=9keHLN4-cpnsWcii1qU0RITNi9-m7pOhkJ_t0MtCM4k,1117
|
@@ -233,7 +234,7 @@ prefect/logging/logging.yml,sha256=UkEewf0c3_dURI2uCU4RrxkhI5Devoa1s93fl7hilcg,3
|
|
233
234
|
prefect/pydantic/__init__.py,sha256=BsW32X7fvl44J1JQer1tkEpfleMtL2kL5Uy1KmwWvso,2714
|
234
235
|
prefect/pydantic/main.py,sha256=ups_UULBhCPhB-E7X7-Qgbpor1oJdqChRzpD0ZYQH8A,839
|
235
236
|
prefect/runner/__init__.py,sha256=d3DFUXy5BYd8Z4cppNN_6RTSddmr-KfnQ5Yw5vh8WL8,96
|
236
|
-
prefect/runner/runner.py,sha256=
|
237
|
+
prefect/runner/runner.py,sha256=qSgy4ogMiRxldx3tFnJuHf77kXxs-srVQnzvKqyV3Tw,48115
|
237
238
|
prefect/runner/server.py,sha256=mgjH5SPlj3xu0_pZHg15zw59OSJ5lIzTIZ101s281Oo,10655
|
238
239
|
prefect/runner/storage.py,sha256=iZey8Am51c1fZFpS9iVXWYpKiM_lSocvaJEOZVExhvA,22428
|
239
240
|
prefect/runner/submit.py,sha256=w53VdsqfwjW-M3e8hUAAoVlNrXsvGuuyGpEN0wi3vX0,8537
|
@@ -242,7 +243,7 @@ prefect/runtime/__init__.py,sha256=iYmfK1HmXiXXCQK77wDloOqZmY7SFF5iyr37jRzuf-c,4
|
|
242
243
|
prefect/runtime/deployment.py,sha256=UWNXH-3-NNVxLCl5XnDKiofo4a5j8w_42ns1OSQMixg,4751
|
243
244
|
prefect/runtime/flow_run.py,sha256=aFM3e9xqpeZQ4WkvZQXD0lmXu2fNVVVA1etSN3ZI9aE,8444
|
244
245
|
prefect/runtime/task_run.py,sha256=_np3pjBHWkvEtSe-QElEAGwUct629vVx_sahPr-H8gM,3402
|
245
|
-
prefect/server/api/collections_data/views/aggregate-worker-metadata.json,sha256=
|
246
|
+
prefect/server/api/collections_data/views/aggregate-worker-metadata.json,sha256=torH7t5D3YMsP_2IiuIuRtJRd2-qFw41oGRMbbe8k-M,80268
|
246
247
|
prefect/server/api/static/prefect-logo-mark-gradient.png,sha256=ylRjJkI_JHCw8VbQasNnXQHwZW-sH-IQiUGSD3aWP1E,73430
|
247
248
|
prefect/software/__init__.py,sha256=cn7Hesmkv3unA3NynEiyB0Cj2jAzV17yfwjVsS5Ecso,106
|
248
249
|
prefect/software/base.py,sha256=GV6a5RrLx3JaOg1RI44jZTsI_qbqNWbWF3uVO5csnHM,1464
|
@@ -252,14 +253,14 @@ prefect/software/python.py,sha256=EssQ16aMvWSzzWagtNPfjQLu9ehieRwN0iWeqpBVtRU,17
|
|
252
253
|
prefect/types/__init__.py,sha256=0HPZZotMwbGEoor_hmLlNDohkqoeCGuE8NOJ5fVXTyI,2448
|
253
254
|
prefect/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
254
255
|
prefect/utilities/annotations.py,sha256=p33yhh1Zx8BZUlTtl8gKRbpwWU9FVnZ8cfYrcd5KxDI,3103
|
255
|
-
prefect/utilities/asyncutils.py,sha256=
|
256
|
+
prefect/utilities/asyncutils.py,sha256=a4RHo1_vxb3A8R2IZ9F-DUrY8Jar6qjoY6KosYeGMa0,16815
|
256
257
|
prefect/utilities/callables.py,sha256=vbgRqfd79iXbh4QhNX1Ig9MTIcj-aAgH5yLSqobd2sM,11657
|
257
258
|
prefect/utilities/collections.py,sha256=0v-NNXxYYzkUTCCNDMNB44AnDv9yj35UYouNraCqlo8,15449
|
258
259
|
prefect/utilities/compat.py,sha256=mNQZDnzyKaOqy-OV-DnmH_dc7CNF5nQgW_EsA4xMr7g,906
|
259
260
|
prefect/utilities/context.py,sha256=BThuUW94-IYgFYTeMIM9KMo8ShT3oiI7w5ajZHzU1j0,1377
|
260
261
|
prefect/utilities/dispatch.py,sha256=BSAuYf3uchA6giBB90Z9tsmnR94SAqHZMHl01fRuA64,5467
|
261
262
|
prefect/utilities/dockerutils.py,sha256=O5lIgCej5KGRYU2TC1NzNuIK595uOIWJilhZXYEVtOA,20180
|
262
|
-
prefect/utilities/engine.py,sha256=
|
263
|
+
prefect/utilities/engine.py,sha256=hOEsazCdH4amgBCSq-2C2ERhr8pWcIGEhjIp6PKC4D8,21657
|
263
264
|
prefect/utilities/filesystem.py,sha256=M_TeZ1MftjBf7hDLWk-Iphir369TpJ1binMsBKiO9YE,4449
|
264
265
|
prefect/utilities/hashing.py,sha256=EOwZLmoIZImuSTxAvVqInabxJ-4RpEfYeg9e2EDQF8o,1752
|
265
266
|
prefect/utilities/importtools.py,sha256=isblzKv7EPo7HtnlKYpL4t-GJdtTjUSMmvXgXSMEVZM,11764
|
@@ -275,15 +276,15 @@ prefect/utilities/text.py,sha256=eXGIsCcZ7h_6hy8T5GDQjL8GiKyktoOqavYub0QjgO4,445
|
|
275
276
|
prefect/utilities/visualization.py,sha256=9Pc8ImgnBpnszWTFxYm42cmtHjNEAsGZ8ugkn8w_dJk,6501
|
276
277
|
prefect/utilities/schema_tools/__init__.py,sha256=YtbTThhL8nPEYm3ByTHeOLcj2fm8fXrsxB-ioBWoIek,284
|
277
278
|
prefect/utilities/schema_tools/hydration.py,sha256=RNuJK4Vd__V69gdQbaWSVhSkV0AUISfGzH_xd0p6Zh0,8291
|
278
|
-
prefect/utilities/schema_tools/validation.py,sha256=
|
279
|
+
prefect/utilities/schema_tools/validation.py,sha256=ffHO9ryyc4ARgktYrgf6xwjGTY65peqsIq4gWEB8RC0,7997
|
279
280
|
prefect/workers/__init__.py,sha256=6el2Q856CuRPa5Hdrbm9QyAWB_ovcT2bImSFsoWI46k,66
|
280
281
|
prefect/workers/base.py,sha256=RgnveLqomr7m0Tla2-9mFy81XCny9TvpuvvBjlHw3bc,44977
|
281
282
|
prefect/workers/block.py,sha256=5bdCuqT-4I-et_8ZLG2y1AODzYiCQwFiivhdt5NMEog,7635
|
282
283
|
prefect/workers/process.py,sha256=OVGM7Vhnk1yY_EF6xEsRv9YQ-WhGJgV4b0YhqeRZ9t0,10102
|
283
284
|
prefect/workers/server.py,sha256=WVZJxR8nTMzK0ov0BD0xw5OyQpT26AxlXbsGQ1OrxeQ,1551
|
284
285
|
prefect/workers/utilities.py,sha256=VfPfAlGtTuDj0-Kb8WlMgAuOfgXCdrGAnKMapPSBrwc,2483
|
285
|
-
prefect_client-2.18.
|
286
|
-
prefect_client-2.18.
|
287
|
-
prefect_client-2.18.
|
288
|
-
prefect_client-2.18.
|
289
|
-
prefect_client-2.18.
|
286
|
+
prefect_client-2.18.1.dist-info/LICENSE,sha256=MCxsn8osAkzfxKC4CC_dLcUkU8DZLkyihZ8mGs3Ah3Q,11357
|
287
|
+
prefect_client-2.18.1.dist-info/METADATA,sha256=jJ1AUSsZj7j-OF6Gwx2tzXuuTzfEIekWN-BByroBIZY,7401
|
288
|
+
prefect_client-2.18.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
289
|
+
prefect_client-2.18.1.dist-info/top_level.txt,sha256=MJZYJgFdbRc2woQCeB4vM6T33tr01TmkEhRcns6H_H4,8
|
290
|
+
prefect_client-2.18.1.dist-info/RECORD,,
|
prefect/concurrency/common.py
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|