prefect-client 2.16.8__py3-none-any.whl → 2.17.0__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 +0 -18
- prefect/_internal/compatibility/deprecated.py +108 -5
- prefect/_internal/compatibility/experimental.py +9 -8
- prefect/_internal/concurrency/api.py +23 -42
- prefect/_internal/concurrency/waiters.py +25 -22
- prefect/_internal/pydantic/__init__.py +16 -3
- prefect/_internal/pydantic/_base_model.py +39 -4
- prefect/_internal/pydantic/_compat.py +69 -452
- prefect/_internal/pydantic/_flags.py +5 -0
- prefect/_internal/pydantic/_types.py +8 -0
- prefect/_internal/pydantic/utilities/__init__.py +0 -0
- prefect/_internal/pydantic/utilities/config_dict.py +72 -0
- prefect/_internal/pydantic/utilities/field_validator.py +135 -0
- prefect/_internal/pydantic/utilities/model_construct.py +56 -0
- prefect/_internal/pydantic/utilities/model_copy.py +55 -0
- prefect/_internal/pydantic/utilities/model_dump.py +136 -0
- prefect/_internal/pydantic/utilities/model_dump_json.py +112 -0
- prefect/_internal/pydantic/utilities/model_fields.py +50 -0
- prefect/_internal/pydantic/utilities/model_fields_set.py +29 -0
- prefect/_internal/pydantic/utilities/model_json_schema.py +82 -0
- prefect/_internal/pydantic/utilities/model_rebuild.py +80 -0
- prefect/_internal/pydantic/utilities/model_validate.py +75 -0
- prefect/_internal/pydantic/utilities/model_validate_json.py +68 -0
- prefect/_internal/pydantic/utilities/model_validator.py +79 -0
- prefect/_internal/pydantic/utilities/type_adapter.py +71 -0
- prefect/_internal/schemas/bases.py +1 -17
- prefect/_internal/schemas/validators.py +425 -4
- prefect/agent.py +1 -1
- prefect/blocks/kubernetes.py +7 -3
- prefect/blocks/notifications.py +18 -18
- prefect/blocks/webhook.py +1 -1
- prefect/client/base.py +7 -0
- prefect/client/cloud.py +1 -1
- prefect/client/orchestration.py +51 -11
- prefect/client/schemas/actions.py +367 -297
- prefect/client/schemas/filters.py +28 -28
- prefect/client/schemas/objects.py +78 -147
- prefect/client/schemas/responses.py +240 -60
- prefect/client/schemas/schedules.py +6 -8
- prefect/concurrency/events.py +2 -2
- prefect/context.py +4 -2
- prefect/deployments/base.py +6 -13
- prefect/deployments/deployments.py +34 -9
- prefect/deployments/runner.py +9 -27
- prefect/deprecated/packaging/base.py +5 -6
- prefect/deprecated/packaging/docker.py +19 -25
- prefect/deprecated/packaging/file.py +10 -5
- prefect/deprecated/packaging/orion.py +9 -4
- prefect/deprecated/packaging/serializers.py +8 -58
- prefect/engine.py +55 -618
- prefect/events/actions.py +16 -1
- prefect/events/clients.py +45 -13
- prefect/events/filters.py +19 -2
- prefect/events/related.py +4 -4
- prefect/events/schemas/automations.py +13 -2
- prefect/events/schemas/deployment_triggers.py +73 -5
- prefect/events/schemas/events.py +1 -1
- prefect/events/utilities.py +12 -4
- prefect/events/worker.py +26 -8
- prefect/exceptions.py +3 -8
- prefect/filesystems.py +7 -7
- prefect/flows.py +7 -3
- prefect/infrastructure/provisioners/ecs.py +1 -0
- prefect/logging/configuration.py +2 -2
- prefect/manifests.py +1 -8
- prefect/profiles.toml +1 -1
- prefect/pydantic/__init__.py +74 -2
- prefect/pydantic/main.py +26 -2
- prefect/serializers.py +6 -31
- prefect/settings.py +72 -26
- prefect/software/python.py +3 -5
- prefect/task_server.py +2 -2
- prefect/utilities/callables.py +1 -1
- prefect/utilities/collections.py +2 -1
- prefect/utilities/dispatch.py +1 -0
- prefect/utilities/engine.py +629 -0
- prefect/utilities/pydantic.py +1 -1
- prefect/utilities/schema_tools/validation.py +2 -2
- prefect/utilities/visualization.py +1 -1
- prefect/variables.py +88 -12
- prefect/workers/base.py +20 -11
- prefect/workers/block.py +4 -8
- prefect/workers/process.py +2 -5
- {prefect_client-2.16.8.dist-info → prefect_client-2.17.0.dist-info}/METADATA +4 -3
- {prefect_client-2.16.8.dist-info → prefect_client-2.17.0.dist-info}/RECORD +88 -72
- prefect/_internal/schemas/transformations.py +0 -106
- {prefect_client-2.16.8.dist-info → prefect_client-2.17.0.dist-info}/LICENSE +0 -0
- {prefect_client-2.16.8.dist-info → prefect_client-2.17.0.dist-info}/WHEEL +0 -0
- {prefect_client-2.16.8.dist-info → prefect_client-2.17.0.dist-info}/top_level.txt +0 -0
prefect/variables.py
CHANGED
@@ -1,10 +1,95 @@
|
|
1
|
-
from typing import Optional
|
1
|
+
from typing import List, Optional
|
2
2
|
|
3
|
-
from prefect.
|
3
|
+
from prefect._internal.compatibility.deprecated import deprecated_callable
|
4
|
+
from prefect.client.schemas.actions import VariableCreate as VariableRequest
|
5
|
+
from prefect.client.schemas.actions import VariableUpdate as VariableUpdateRequest
|
4
6
|
from prefect.client.utilities import get_or_create_client
|
5
7
|
from prefect.utilities.asyncutils import sync_compatible
|
6
8
|
|
7
9
|
|
10
|
+
class Variable(VariableRequest):
|
11
|
+
"""
|
12
|
+
Variables are named, mutable string values, much like environment variables. Variables are scoped to a Prefect server instance or a single workspace in Prefect Cloud.
|
13
|
+
https://docs.prefect.io/latest/concepts/variables/
|
14
|
+
|
15
|
+
Arguments:
|
16
|
+
name: A string identifying the variable.
|
17
|
+
value: A string that is the value of the variable.
|
18
|
+
tags: An optional list of strings to associate with the variable.
|
19
|
+
"""
|
20
|
+
|
21
|
+
@classmethod
|
22
|
+
@sync_compatible
|
23
|
+
async def set(
|
24
|
+
cls,
|
25
|
+
name: str,
|
26
|
+
value: str,
|
27
|
+
tags: Optional[List[str]] = None,
|
28
|
+
overwrite: bool = False,
|
29
|
+
) -> Optional[str]:
|
30
|
+
"""
|
31
|
+
Sets a new variable. If one exists with the same name, user must pass `overwrite=True`
|
32
|
+
```
|
33
|
+
from prefect import variables
|
34
|
+
|
35
|
+
@flow
|
36
|
+
def my_flow():
|
37
|
+
var = variables.Variable.set(name="my_var",value="test_value", tags=["hi", "there"], overwrite=True)
|
38
|
+
```
|
39
|
+
or
|
40
|
+
```
|
41
|
+
from prefect.variables import Variable
|
42
|
+
|
43
|
+
@flow
|
44
|
+
async def my_flow():
|
45
|
+
var = await Variable.set(name="my_var",value="test_value", tags=["hi", "there"], overwrite=True)
|
46
|
+
```
|
47
|
+
"""
|
48
|
+
client, _ = get_or_create_client()
|
49
|
+
variable = await client.read_variable_by_name(name)
|
50
|
+
var_dict = {"name": name, "value": value}
|
51
|
+
var_dict["tags"] = tags or []
|
52
|
+
if variable:
|
53
|
+
if not overwrite:
|
54
|
+
raise ValueError(
|
55
|
+
"You are attempting to save a variable with a name that is already in use. If you would like to overwrite the values that are saved, then call .set with `overwrite=True`."
|
56
|
+
)
|
57
|
+
var = VariableUpdateRequest(**var_dict)
|
58
|
+
await client.update_variable(variable=var)
|
59
|
+
variable = await client.read_variable_by_name(name)
|
60
|
+
else:
|
61
|
+
var = VariableRequest(**var_dict)
|
62
|
+
variable = await client.create_variable(variable=var)
|
63
|
+
|
64
|
+
return variable if variable else None
|
65
|
+
|
66
|
+
@classmethod
|
67
|
+
@sync_compatible
|
68
|
+
async def get(cls, name: str, default: Optional[str] = None) -> Optional[str]:
|
69
|
+
"""
|
70
|
+
Get a variable by name. If doesn't exist return the default.
|
71
|
+
```
|
72
|
+
from prefect import variables
|
73
|
+
|
74
|
+
@flow
|
75
|
+
def my_flow():
|
76
|
+
var = variables.Variable.get("my_var")
|
77
|
+
```
|
78
|
+
or
|
79
|
+
```
|
80
|
+
from prefect.variables import Variable
|
81
|
+
|
82
|
+
@flow
|
83
|
+
async def my_flow():
|
84
|
+
var = await Variable.get("my_var")
|
85
|
+
```
|
86
|
+
"""
|
87
|
+
client, _ = get_or_create_client()
|
88
|
+
variable = await client.read_variable_by_name(name)
|
89
|
+
return variable if variable else default
|
90
|
+
|
91
|
+
|
92
|
+
@deprecated_callable(start_date="Apr 2024")
|
8
93
|
@sync_compatible
|
9
94
|
async def get(name: str, default: Optional[str] = None) -> Optional[str]:
|
10
95
|
"""
|
@@ -25,14 +110,5 @@ async def get(name: str, default: Optional[str] = None) -> Optional[str]:
|
|
25
110
|
var = await variables.get("my_var")
|
26
111
|
```
|
27
112
|
"""
|
28
|
-
variable = await
|
113
|
+
variable = await Variable.get(name)
|
29
114
|
return variable.value if variable else default
|
30
|
-
|
31
|
-
|
32
|
-
async def _get_variable_by_name(
|
33
|
-
name: str,
|
34
|
-
client: Optional[PrefectClient] = None,
|
35
|
-
):
|
36
|
-
client, _ = get_or_create_client(client)
|
37
|
-
variable = await client.read_variable_by_name(name)
|
38
|
-
return variable
|
prefect/workers/base.py
CHANGED
@@ -9,6 +9,7 @@ import anyio.abc
|
|
9
9
|
import pendulum
|
10
10
|
|
11
11
|
from prefect._internal.pydantic import HAS_PYDANTIC_V2
|
12
|
+
from prefect._internal.schemas.validators import return_v_or_none
|
12
13
|
|
13
14
|
if HAS_PYDANTIC_V2:
|
14
15
|
from pydantic.v1 import BaseModel, Field, PrivateAttr, validator
|
@@ -108,10 +109,7 @@ class BaseJobConfiguration(BaseModel):
|
|
108
109
|
|
109
110
|
@validator("command")
|
110
111
|
def _coerce_command(cls, v):
|
111
|
-
|
112
|
-
if not v:
|
113
|
-
return None
|
114
|
-
return v
|
112
|
+
return return_v_or_none(v)
|
115
113
|
|
116
114
|
@staticmethod
|
117
115
|
def _get_base_config_defaults(variables: dict) -> dict:
|
@@ -632,6 +630,22 @@ class BaseWorker(abc.ABC):
|
|
632
630
|
|
633
631
|
try:
|
634
632
|
configuration = await self._get_configuration(flow_run)
|
633
|
+
except ObjectNotFound:
|
634
|
+
self._logger.warning(
|
635
|
+
f"Flow run {flow_run.id!r} cannot be cancelled by this worker:"
|
636
|
+
f" associated deployment {flow_run.deployment_id!r} does not exist."
|
637
|
+
)
|
638
|
+
await self._mark_flow_run_as_cancelled(
|
639
|
+
flow_run,
|
640
|
+
state_updates={
|
641
|
+
"message": (
|
642
|
+
"This flow run is missing infrastructure configuration information"
|
643
|
+
" and cancellation cannot be guaranteed."
|
644
|
+
)
|
645
|
+
},
|
646
|
+
)
|
647
|
+
return
|
648
|
+
else:
|
635
649
|
if configuration.is_using_a_runner:
|
636
650
|
self._logger.info(
|
637
651
|
f"Skipping cancellation because flow run {str(flow_run.id)!r} is"
|
@@ -639,11 +653,6 @@ class BaseWorker(abc.ABC):
|
|
639
653
|
" cancellation."
|
640
654
|
)
|
641
655
|
return
|
642
|
-
except ObjectNotFound:
|
643
|
-
self._logger.warning(
|
644
|
-
f"Flow run {flow_run.id!r} cannot be cancelled by this worker:"
|
645
|
-
f" associated deployment {flow_run.deployment_id!r} does not exist."
|
646
|
-
)
|
647
656
|
|
648
657
|
if not flow_run.infrastructure_pid:
|
649
658
|
run_logger.error(
|
@@ -966,7 +975,7 @@ class BaseWorker(abc.ABC):
|
|
966
975
|
deployment = await self._client.read_deployment(flow_run.deployment_id)
|
967
976
|
flow = await self._client.read_flow(flow_run.flow_id)
|
968
977
|
|
969
|
-
deployment_vars = deployment.
|
978
|
+
deployment_vars = deployment.job_variables or {}
|
970
979
|
flow_run_vars = flow_run.job_variables or {}
|
971
980
|
job_variables = {**deployment_vars, **flow_run_vars}
|
972
981
|
|
@@ -1142,7 +1151,7 @@ class BaseWorker(abc.ABC):
|
|
1142
1151
|
if include_self:
|
1143
1152
|
worker_resource = self._event_resource()
|
1144
1153
|
worker_resource["prefect.resource.role"] = "worker"
|
1145
|
-
related.append(RelatedResource(
|
1154
|
+
related.append(RelatedResource.parse_obj(worker_resource))
|
1146
1155
|
|
1147
1156
|
return related
|
1148
1157
|
|
prefect/workers/block.py
CHANGED
@@ -5,9 +5,9 @@ import anyio
|
|
5
5
|
import anyio.abc
|
6
6
|
|
7
7
|
from prefect._internal.pydantic import HAS_PYDANTIC_V2
|
8
|
+
from prefect._internal.schemas.validators import validate_block_is_infrastructure
|
8
9
|
from prefect.blocks.core import Block
|
9
10
|
from prefect.client.schemas.objects import BlockDocument
|
10
|
-
from prefect.infrastructure.base import Infrastructure
|
11
11
|
from prefect.utilities.collections import get_from_dict
|
12
12
|
from prefect.workers.base import BaseWorker, BaseWorkerResult
|
13
13
|
|
@@ -33,12 +33,8 @@ class BlockWorkerJobConfiguration(BaseModel):
|
|
33
33
|
)
|
34
34
|
|
35
35
|
@validator("block")
|
36
|
-
def
|
37
|
-
|
38
|
-
if not isinstance(v, Infrastructure):
|
39
|
-
raise TypeError("Provided block is not a valid infrastructure block.")
|
40
|
-
|
41
|
-
return v
|
36
|
+
def _validate_infrastructure_block(cls, v):
|
37
|
+
return validate_block_is_infrastructure(v)
|
42
38
|
|
43
39
|
_related_objects: Dict[str, Any] = PrivateAttr(default_factory=dict)
|
44
40
|
|
@@ -175,7 +171,7 @@ class BlockWorker(BaseWorker):
|
|
175
171
|
# attributes of the infrastructure block
|
176
172
|
doc_dict = infra_document.dict()
|
177
173
|
infra_dict = doc_dict.get("data", {})
|
178
|
-
for override, value in (deployment.
|
174
|
+
for override, value in (deployment.job_variables or {}).items():
|
179
175
|
nested_fields = override.split(".")
|
180
176
|
if nested_fields == ["command"]:
|
181
177
|
value = shlex.split(value)
|
prefect/workers/process.py
CHANGED
@@ -35,9 +35,9 @@ if HAS_PYDANTIC_V2:
|
|
35
35
|
else:
|
36
36
|
from pydantic import Field, validator
|
37
37
|
|
38
|
+
from prefect._internal.schemas.validators import validate_command
|
38
39
|
from prefect.client.schemas import FlowRun
|
39
40
|
from prefect.exceptions import InfrastructureNotAvailable, InfrastructureNotFound
|
40
|
-
from prefect.utilities.filesystem import relative_path_to_current_platform
|
41
41
|
from prefect.utilities.processutils import get_sys_executable, run_process
|
42
42
|
from prefect.workers.base import (
|
43
43
|
BaseJobConfiguration,
|
@@ -85,10 +85,7 @@ class ProcessJobConfiguration(BaseJobConfiguration):
|
|
85
85
|
|
86
86
|
@validator("working_dir")
|
87
87
|
def validate_command(cls, v):
|
88
|
-
|
89
|
-
if v:
|
90
|
-
return relative_path_to_current_platform(v)
|
91
|
-
return v
|
88
|
+
return validate_command(v)
|
92
89
|
|
93
90
|
def prepare_for_flow_run(
|
94
91
|
self,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: prefect-client
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.17.0
|
4
4
|
Summary: Workflow orchestration and management.
|
5
5
|
Home-page: https://www.prefect.io
|
6
6
|
Author: Prefect Technologies, Inc.
|
@@ -32,15 +32,16 @@ Requires-Dist: croniter <3.0.0,>=1.0.12
|
|
32
32
|
Requires-Dist: fsspec >=2022.5.0
|
33
33
|
Requires-Dist: graphviz >=0.20.1
|
34
34
|
Requires-Dist: griffe >=0.20.0
|
35
|
-
Requires-Dist: httpcore <2.0.0,>=0.
|
35
|
+
Requires-Dist: httpcore <2.0.0,>=1.0.5
|
36
36
|
Requires-Dist: httpx[http2] !=0.23.2,>=0.23
|
37
37
|
Requires-Dist: importlib-resources <6.2.0,>=6.1.3
|
38
38
|
Requires-Dist: jsonpatch <2.0,>=1.32
|
39
|
-
Requires-Dist: jsonschema <5.0.0,>=
|
39
|
+
Requires-Dist: jsonschema <5.0.0,>=4.0.0
|
40
40
|
Requires-Dist: orjson <4.0,>=3.7
|
41
41
|
Requires-Dist: packaging <24.3,>=21.3
|
42
42
|
Requires-Dist: pathspec >=0.8.0
|
43
43
|
Requires-Dist: pydantic[email] !=2.0.0,!=2.0.1,!=2.1.0,<3.0.0,>=1.10.0
|
44
|
+
Requires-Dist: pydantic-core <3.0.0,>=2.12.0
|
44
45
|
Requires-Dist: python-dateutil <3.0.0,>=2.8.2
|
45
46
|
Requires-Dist: python-slugify <9.0,>=5.0
|
46
47
|
Requires-Dist: pyyaml <7.0.0,>=5.4.1
|
@@ -1,36 +1,36 @@
|
|
1
1
|
prefect/.prefectignore,sha256=awSprvKT0vI8a64mEOLrMxhxqcO-b0ERQeYpA2rNKVQ,390
|
2
|
-
prefect/__init__.py,sha256=
|
2
|
+
prefect/__init__.py,sha256=iZ9157-WJF7ImPrnwbSeteWyEXPprzphTacfxLLsUVI,4990
|
3
3
|
prefect/_version.py,sha256=fQguBh1dzT7Baahj504O5RrsLlSyg3Zrx42OpgdPnFc,22378
|
4
|
-
prefect/agent.py,sha256=
|
4
|
+
prefect/agent.py,sha256=HaGT0yh3fciluYpO99dVHo_LHq7N2cYLuWNrEV_kPV8,27789
|
5
5
|
prefect/artifacts.py,sha256=mreaBE4qMoXkjc9YI-5cAxoye7ixraHB_zr8GTK9xPU,8694
|
6
|
-
prefect/context.py,sha256=
|
7
|
-
prefect/engine.py,sha256=
|
8
|
-
prefect/exceptions.py,sha256=
|
9
|
-
prefect/filesystems.py,sha256=
|
6
|
+
prefect/context.py,sha256=BMT8VbI5OmQPFll6I5BlP5lZYn8IoxFsuRjjkqu7wK4,18144
|
7
|
+
prefect/engine.py,sha256=3GGmbmqnUCRbN_DT5CRjuZXQZcu5mbLK6ibXUg8MPWk,89809
|
8
|
+
prefect/exceptions.py,sha256=fQr3ktVvfvtN1ETLtHbfSHDs0Efgu7bTV9ABuVV9bVk,10844
|
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=0k5TNpRNAtpWaJ_6M5M4HfzvxVfi4YuqJ9m8w3mNHEk,70512
|
12
12
|
prefect/futures.py,sha256=RaWfYIXtH7RsWxQ5QWTTlAzwtVV8XWpXaZT_hLq35vQ,12590
|
13
|
-
prefect/manifests.py,sha256=
|
13
|
+
prefect/manifests.py,sha256=sTM7j8Us5d49zaydYKWsKb7zJ96v1ChkLkLeR0GFYD8,683
|
14
14
|
prefect/plugins.py,sha256=0C-D3-dKi06JZ44XEGmLjCiAkefbE_lKX-g3urzdbQ4,4163
|
15
|
-
prefect/profiles.toml,sha256=
|
15
|
+
prefect/profiles.toml,sha256=Fs8hD_BdWHZgAijgk8pK_Zx-Pm-YFixqDIfEP6fM-qU,38
|
16
16
|
prefect/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
17
|
prefect/results.py,sha256=FgudRagwoNKVKR5590I4AN0mxgYoyXG_7Q1HVoMXdaU,24731
|
18
|
-
prefect/serializers.py,sha256
|
19
|
-
prefect/settings.py,sha256=
|
18
|
+
prefect/serializers.py,sha256=C1sZ06Tc1XmiUIDkdXZtzBR2jeXLYEz5rRDl0J5t1fw,8081
|
19
|
+
prefect/settings.py,sha256=oXfDey0JI38yJp2hoydxrW5S4qRFcePpafwIdnsEv6s,72895
|
20
20
|
prefect/states.py,sha256=-Ud4AUom3Qu-HQ4hOLvfVZuuF-b_ibaqtzmL7V949Ac,20839
|
21
21
|
prefect/task_engine.py,sha256=_2I7XLwoT_nNhpzTMa_52aQKjsDoaW6WpzwIHYEWZS0,2598
|
22
22
|
prefect/task_runners.py,sha256=HXUg5UqhZRN2QNBqMdGE1lKhwFhT8TaRN75ScgLbnw8,11012
|
23
|
-
prefect/task_server.py,sha256=
|
23
|
+
prefect/task_server.py,sha256=3f6rDIOXmhhF_MDHGk5owaU9lyLHsR-zgCp6pIHEUyo,11075
|
24
24
|
prefect/tasks.py,sha256=AFDCyb0p0r8mamiFMu220-DfGMLSjq-uRi4vL6oxQOE,50477
|
25
|
-
prefect/variables.py,sha256=
|
25
|
+
prefect/variables.py,sha256=5nfLs367BKU3jhEBv0Bo6b_YCACqsNjw3p_ZeAVq9xM,3817
|
26
26
|
prefect/_internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
27
27
|
prefect/_internal/_logging.py,sha256=HvNHY-8P469o5u4LYEDBTem69XZEt1QUeUaLToijpak,810
|
28
28
|
prefect/_internal/pytz.py,sha256=47Y28jKxUvgw7vaEvN-Xl0laiVdMLXC8IRUEk7oHz1Q,13749
|
29
29
|
prefect/_internal/compatibility/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
|
-
prefect/_internal/compatibility/deprecated.py,sha256=
|
31
|
-
prefect/_internal/compatibility/experimental.py,sha256=
|
30
|
+
prefect/_internal/compatibility/deprecated.py,sha256=2HYCVrVOfCWndiaGH0djl5mB_i1BjnGBOvT0btc7ZLk,11524
|
31
|
+
prefect/_internal/compatibility/experimental.py,sha256=ywG38cgmUNrZijnI-K8uJwCI0BQHJJci6lG8gl8HuH8,7458
|
32
32
|
prefect/_internal/concurrency/__init__.py,sha256=ncKwi1NhE3umSFGSKRk9wEVKzN1z1ZD-fmY4EDZHH_U,2142
|
33
|
-
prefect/_internal/concurrency/api.py,sha256=
|
33
|
+
prefect/_internal/concurrency/api.py,sha256=nrNENVcoFNbzo-RwdVSjA6VtfrXFQWcjTGYoacGcd8k,8223
|
34
34
|
prefect/_internal/concurrency/calls.py,sha256=SVMR1yPTQJtBX095WfRk6cMTq4YKf_L6G77qtaTyN3I,15564
|
35
35
|
prefect/_internal/concurrency/cancellation.py,sha256=eiVsdG5BE_2HCvkQGzIcZ6Gw4ANmchcPRzHsI9wtP3Y,18201
|
36
36
|
prefect/_internal/concurrency/event_loop.py,sha256=rOxUa7e95xP4ionH3o0gRpUzzG6aZMQUituLpMTvTFo,2596
|
@@ -38,23 +38,38 @@ prefect/_internal/concurrency/inspection.py,sha256=GWFoSzgs8bZZGNN-Im9sQ-0t0Dqdn
|
|
38
38
|
prefect/_internal/concurrency/primitives.py,sha256=kxCPD9yLtCeqt-JIHjevL4Zt5FvrF_Bam-Ucf41FX6k,2608
|
39
39
|
prefect/_internal/concurrency/services.py,sha256=aggJd4IUSB6ufppRYdRT-36daEg1JSpJCvK635R8meg,11951
|
40
40
|
prefect/_internal/concurrency/threads.py,sha256=-tReWZL9_XMkRS35SydAfeePH2vqCqb1CGM8lgrKT1I,7846
|
41
|
-
prefect/_internal/concurrency/waiters.py,sha256=
|
42
|
-
prefect/_internal/pydantic/__init__.py,sha256=
|
43
|
-
prefect/_internal/pydantic/_base_model.py,sha256=
|
44
|
-
prefect/_internal/pydantic/_compat.py,sha256=
|
45
|
-
prefect/_internal/pydantic/_flags.py,sha256=
|
41
|
+
prefect/_internal/concurrency/waiters.py,sha256=93ZLbrul5qTne9Na-B4li02dlXJM6TVPf4sWmYSegg8,9911
|
42
|
+
prefect/_internal/pydantic/__init__.py,sha256=KqiPSCPiaEo_MVCOq2frO34i3h45VIKeHq40WjHStoQ,964
|
43
|
+
prefect/_internal/pydantic/_base_model.py,sha256=QU28vsVQnb9H4AFGocxtHzLGCn4K4My6KFkbXwNVodc,1190
|
44
|
+
prefect/_internal/pydantic/_compat.py,sha256=oag6oJamgicyYiV6VrpJyjmEQNCDaNbGPmOb9HSRUEk,2577
|
45
|
+
prefect/_internal/pydantic/_flags.py,sha256=h1K50GKUJx09hvGHtfQ-rnBs233jhKr8DVtJUWiaz2A,796
|
46
|
+
prefect/_internal/pydantic/_types.py,sha256=A1WD9OHyGoIp0gujl3ozCoXEd4OcySgjgbmHsMq9RTs,275
|
46
47
|
prefect/_internal/pydantic/schemas.py,sha256=tsRKq5yEIgiRbWMl3BPnbfNaKyDN6pq8WSs0M8SQMm4,452
|
47
48
|
prefect/_internal/pydantic/v1_schema.py,sha256=j_DDQqpP1xFsvkNSjWeviTnnFyNPPqou9n4M2lf3K2U,1133
|
48
49
|
prefect/_internal/pydantic/v2_schema.py,sha256=RE7VQaf6nefhdYU2O-gbzumMcuBk-fiH_6Rq9F7eAqg,3689
|
49
50
|
prefect/_internal/pydantic/v2_validated_func.py,sha256=44I4o8jjiS7TYep-E6UYMwjpYH5F1WwJFajW81A3wts,3823
|
50
51
|
prefect/_internal/pydantic/annotations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
52
|
prefect/_internal/pydantic/annotations/pendulum.py,sha256=rWT6zzCtIqvK2_EuAkMt73ZzAvdE5tF2104e0-tIaa4,2625
|
53
|
+
prefect/_internal/pydantic/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
54
|
+
prefect/_internal/pydantic/utilities/config_dict.py,sha256=gALiNZWiSy3a2LQoV81Uhiyz6eJmgXUGn-kwNxKq9Yw,2654
|
55
|
+
prefect/_internal/pydantic/utilities/field_validator.py,sha256=KLVb1GjAs9sjNIpTuyGorI7QpIhEVjF4sotJ2TT5aHg,4931
|
56
|
+
prefect/_internal/pydantic/utilities/model_construct.py,sha256=Y7c5VJw4kPx-wNQ996QVBkZovdhlBsWyGB3CegWaoko,1876
|
57
|
+
prefect/_internal/pydantic/utilities/model_copy.py,sha256=YnuiakinWvCSo2wHVxDnjjYRZpMzjmfZ44J-E8kDAVo,1528
|
58
|
+
prefect/_internal/pydantic/utilities/model_dump.py,sha256=JNP9ngp2tMjmKQ0vlu022hrMWv78iUnPXnWw7c_Sj-g,5450
|
59
|
+
prefect/_internal/pydantic/utilities/model_dump_json.py,sha256=r5laFbDNcvAfUrBNXaMjRP_lirQgXL-s6hD9Ll-KKsY,4073
|
60
|
+
prefect/_internal/pydantic/utilities/model_fields.py,sha256=Mc_zl-_g1Rr6WuLWwp9V7rlBCKIL2diGyCxyGFIYdsU,1681
|
61
|
+
prefect/_internal/pydantic/utilities/model_fields_set.py,sha256=6BOEvMdUMpHTnk_IFr8xVueYEcUIarsYBnRggKR2Qh0,870
|
62
|
+
prefect/_internal/pydantic/utilities/model_json_schema.py,sha256=R0Gr-Xdit63BD08AF_f1rv5vcgZj91t3_Lr7QH6DL4o,2707
|
63
|
+
prefect/_internal/pydantic/utilities/model_rebuild.py,sha256=h6SbiczkFEeNqQYd8_P2JjsO3Y-YNY6ribM_JhB4hTM,3039
|
64
|
+
prefect/_internal/pydantic/utilities/model_validate.py,sha256=XPAhd8JmeKOxh3sB53HksHkk0YBM2k8VxscyP92brB0,2117
|
65
|
+
prefect/_internal/pydantic/utilities/model_validate_json.py,sha256=bz0AmxOaLE242xuEMV-7vbFpinowmi96O7xVauueS7A,1910
|
66
|
+
prefect/_internal/pydantic/utilities/model_validator.py,sha256=jcGzIK5YxJnqyRiQ35T7bs7FprLSrb78toESo2jd-A4,3098
|
67
|
+
prefect/_internal/pydantic/utilities/type_adapter.py,sha256=rlQ77J263L570uIYKtX4Qud2Yyx9zCUH4j6Yec-0KcU,2352
|
52
68
|
prefect/_internal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
53
|
-
prefect/_internal/schemas/bases.py,sha256=
|
69
|
+
prefect/_internal/schemas/bases.py,sha256=lEZWz4vG3vxmfiAXFJyCZXtAE6_zCTMuFCI7aa3fREU,9348
|
54
70
|
prefect/_internal/schemas/fields.py,sha256=GMZeLPvrSRleomgKi73AyNKg8aqbh7ezWqGkreLVnMs,1385
|
55
71
|
prefect/_internal/schemas/serializers.py,sha256=G_RGHfObjisUiRvd29p-zc6W4bwt5rE1OdR6TXNrRhQ,825
|
56
|
-
prefect/_internal/schemas/
|
57
|
-
prefect/_internal/schemas/validators.py,sha256=tQXH7KrOBUUlggzNvqQiIOULpr2L0GRmRdt561gVsgI,18855
|
72
|
+
prefect/_internal/schemas/validators.py,sha256=k5hImXNEhyjmb60GXgaR7_-65ODWCKrSdaEocO8vPgM,32606
|
58
73
|
prefect/_vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
59
74
|
prefect/_vendor/fastapi/__init__.py,sha256=u-zfck662O4-Bsz91pZM53R53pVmdEQ1LUgf2hZenb0,1096
|
60
75
|
prefect/_vendor/fastapi/applications.py,sha256=72zqRql-QLOjk68Wmnx4F1aW9_UcDXZ-lf-COP3aL1c,40983
|
@@ -137,35 +152,35 @@ prefect/blocks/__init__.py,sha256=BUfh6gIwA6HEjRyVCAiv0he3M1zfM-oY-JrlBfeWeY8,18
|
|
137
152
|
prefect/blocks/abstract.py,sha256=Q-Pcbg_RbJNxdFITWg3zsKFVwXdcmbX1jBQwZqWSGCU,15633
|
138
153
|
prefect/blocks/core.py,sha256=PGHU-EyXcBtHei5-KhvmMak3xLoine7Nn8BNSNvR_Yw,43498
|
139
154
|
prefect/blocks/fields.py,sha256=ANOzbNyDCBIvm6ktgbLTMs7JW2Sf6CruyATjAW61ks0,1607
|
140
|
-
prefect/blocks/kubernetes.py,sha256=
|
141
|
-
prefect/blocks/notifications.py,sha256=
|
155
|
+
prefect/blocks/kubernetes.py,sha256=IN-hZkzIRvqjd_dzPZby3q8p7m2oUWqArBq24BU9cDg,4071
|
156
|
+
prefect/blocks/notifications.py,sha256=cMvyfN3UY4xpKwpC4nQt80uiKydgEF7SqJbRzM1N5BI,26932
|
142
157
|
prefect/blocks/system.py,sha256=Nlp-3315Hye3FJ5uhDovSPGBIEKi5UbCkAcy3hDxhKk,3057
|
143
|
-
prefect/blocks/webhook.py,sha256=
|
158
|
+
prefect/blocks/webhook.py,sha256=VzQ-qcRtW8MMuYEGYwFgt1QXtWedUtVmeTo7iE2UQ78,2008
|
144
159
|
prefect/client/__init__.py,sha256=yJ5FRF9RxNUio2V_HmyKCKw5G6CZO0h8cv6xA_Hkpcc,477
|
145
|
-
prefect/client/base.py,sha256=
|
146
|
-
prefect/client/cloud.py,sha256=
|
160
|
+
prefect/client/base.py,sha256=ReaZW6Lyax3ATjs4HKHmlMHAoWEPk1Kut_X9H31KR9A,15427
|
161
|
+
prefect/client/cloud.py,sha256=97wWyWefq4Ngjs06HefD04obVGp6gms1PPt2D_vPYMs,4072
|
147
162
|
prefect/client/collections.py,sha256=I9EgbTg4Fn57gn8vwP_WdDmgnATbx9gfkm2jjhCORjw,1037
|
148
163
|
prefect/client/constants.py,sha256=Z_GG8KF70vbbXxpJuqW5pLnwzujTVeHbcYYRikNmGH0,29
|
149
|
-
prefect/client/orchestration.py,sha256=
|
164
|
+
prefect/client/orchestration.py,sha256=6IZTw_IpxM1R45NGJrppmGlPY0KvpoRYB9rONDn5NWc,112936
|
150
165
|
prefect/client/subscriptions.py,sha256=3kqPH3F-CwyrR5wygCpJMjRjM_gcQjd54Qjih6FcLlA,3372
|
151
166
|
prefect/client/utilities.py,sha256=oGU8dJIq7ExEF4WFt-0aSPNX0JP7uH6NmfRlNhfJu00,2660
|
152
167
|
prefect/client/schemas/__init__.py,sha256=KlyqFV-hMulMkNstBn_0ijoHoIwJZaBj6B1r07UmgvE,607
|
153
|
-
prefect/client/schemas/actions.py,sha256=
|
154
|
-
prefect/client/schemas/filters.py,sha256=
|
155
|
-
prefect/client/schemas/objects.py,sha256=
|
156
|
-
prefect/client/schemas/responses.py,sha256=
|
157
|
-
prefect/client/schemas/schedules.py,sha256=
|
168
|
+
prefect/client/schemas/actions.py,sha256=KmeWQiqSN3rwrsdJ1UT-Fa77tMBt66sAUwHFDXd7Z6M,25957
|
169
|
+
prefect/client/schemas/filters.py,sha256=gv57m0bHJqL7Ifsc_vAdRODFomaMVcrGXKAahOSBU4w,35598
|
170
|
+
prefect/client/schemas/objects.py,sha256=7lbymSDdIPgcWhGGw_udpWp7cGaqJS-CeGEVgB6b1WQ,52220
|
171
|
+
prefect/client/schemas/responses.py,sha256=pUCjHox9DZdmxPBNANCcNzDVSA8q5TUOzl3oru995Cs,14665
|
172
|
+
prefect/client/schemas/schedules.py,sha256=h3nPjMZEcxtK7eemC85kZytQ7m-ccCVQEz4P_VTxars,12307
|
158
173
|
prefect/client/schemas/sorting.py,sha256=Y-ea8k_vTUKAPKIxqGebwLSXM7x1s5mJ_4-sDd1Ivi8,2276
|
159
174
|
prefect/concurrency/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
160
175
|
prefect/concurrency/asyncio.py,sha256=S7FXJmzva4DDS3sOMBfWhM1Kimwu7zdEAqSPsM6qkr0,3055
|
161
176
|
prefect/concurrency/common.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
162
|
-
prefect/concurrency/events.py,sha256=
|
177
|
+
prefect/concurrency/events.py,sha256=TGWsKaWddT_1ObfwSNeG64QoVaeWQP9k6vJv2duJHeY,1771
|
163
178
|
prefect/concurrency/services.py,sha256=LQQXBFNUQTlAnHbdrr6GYcEExpGSaQzb-ZiqKk4rQPk,2522
|
164
179
|
prefect/concurrency/sync.py,sha256=AChhkA6hykgnnPmIeOp87jauLL0p_lrSwMwUoeuYprI,2148
|
165
180
|
prefect/deployments/__init__.py,sha256=HcC8IEOMaTz98M8uGsxAGITW11PS744XNsQBFz62Qow,441
|
166
|
-
prefect/deployments/base.py,sha256=
|
167
|
-
prefect/deployments/deployments.py,sha256=
|
168
|
-
prefect/deployments/runner.py,sha256
|
181
|
+
prefect/deployments/base.py,sha256=AQdC9iseQM1yyGje86TvP5b_yCfP7a3D64grCuStC94,21353
|
182
|
+
prefect/deployments/deployments.py,sha256=30L3M3_k-6wFQJWWXKLNI3n9laZX3XJ0QfvrE3o2a_4,41221
|
183
|
+
prefect/deployments/runner.py,sha256=-4OAY3AIcEdf5NSAkdrKKdDeUvLxZnbKX_04zh3dZaU,44302
|
169
184
|
prefect/deployments/schedules.py,sha256=23GDCAKOP-aAEKGappwTrM4HU67ndVH7NR4Dq0neU_U,1884
|
170
185
|
prefect/deployments/steps/__init__.py,sha256=3pZWONAZzenDszqNQT3bmTFilnvjB6xMolMz9tr5pLw,229
|
171
186
|
prefect/deployments/steps/core.py,sha256=Mg2F5GBJyO-jBAAP7PGtIu1sZgNsvmw5Jn5Qj-bUlgk,6617
|
@@ -174,23 +189,23 @@ prefect/deployments/steps/utility.py,sha256=EhoitdNqsQHUL5MBmVyOL9lSwNXweZvFiw03
|
|
174
189
|
prefect/deprecated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
175
190
|
prefect/deprecated/data_documents.py,sha256=9BV2eNNTw1aq1q4xQGhYdUoYWiK7jYL5kIMK6DMDBsg,9664
|
176
191
|
prefect/deprecated/packaging/__init__.py,sha256=UsmNuLPYdIVnws2N_uRa53qlWw_5CnunsMMvB-kKW6w,406
|
177
|
-
prefect/deprecated/packaging/base.py,sha256=
|
178
|
-
prefect/deprecated/packaging/docker.py,sha256=
|
179
|
-
prefect/deprecated/packaging/file.py,sha256=
|
180
|
-
prefect/deprecated/packaging/orion.py,sha256=
|
181
|
-
prefect/deprecated/packaging/serializers.py,sha256=
|
192
|
+
prefect/deprecated/packaging/base.py,sha256=UyVUL13df5qNkCGLmy36PSu85x3vOK4aeDjZuE52IRM,2635
|
193
|
+
prefect/deprecated/packaging/docker.py,sha256=Fnuwk6Oun59_SHWuDxNhJZwK2mYPH3DyJln4axdOKvk,4849
|
194
|
+
prefect/deprecated/packaging/file.py,sha256=i35iFB-OK-5-x5pO7gWLXoCNY6F7A3wTI0TfMte16OE,2988
|
195
|
+
prefect/deprecated/packaging/orion.py,sha256=3vRudge_XI4JX3aVxtK2QQvfHQ836C2maNJ7P3ONXNE,2633
|
196
|
+
prefect/deprecated/packaging/serializers.py,sha256=4nEA_bz9cgv8J3DbMq37SO36P__nqeZuyKQbRoHmjrM,5164
|
182
197
|
prefect/events/__init__.py,sha256=MykLdP-RCUoTgly7ZTF0wLInU2mlGyMfdb1wboExoFQ,1133
|
183
|
-
prefect/events/actions.py,sha256=
|
184
|
-
prefect/events/clients.py,sha256=
|
185
|
-
prefect/events/filters.py,sha256=
|
198
|
+
prefect/events/actions.py,sha256=4JgBB72l07q3YmKycMi1TI469ElX0usiAB_kUfB1Ix4,1776
|
199
|
+
prefect/events/clients.py,sha256=Lknnat6BuGgREAw3LOGFLh8FZhLeU9ICSdSVHOvsdsQ,15141
|
200
|
+
prefect/events/filters.py,sha256=xZlfUrPmjRl6z-PAv-pudnwexrndSk84CVJTUJ7kppc,7374
|
186
201
|
prefect/events/instrument.py,sha256=uNiD7AnkfuiwTsCMgNyJURmY9H2tXNfLCb3EC5FL0Qw,3805
|
187
|
-
prefect/events/related.py,sha256=
|
188
|
-
prefect/events/utilities.py,sha256
|
189
|
-
prefect/events/worker.py,sha256=
|
202
|
+
prefect/events/related.py,sha256=LnnF-31Jaul3nC1H8HxKrcflgl2H6q1cL9tBZGqvH0w,6755
|
203
|
+
prefect/events/utilities.py,sha256=V9wTAYxV1jLGAnfTVmC8peu_ASE26zFUqqPTvJPJZ0Q,2544
|
204
|
+
prefect/events/worker.py,sha256=vpI26ERQzcctnO1izvXUH3-ginPZLnhc4JPh-x5bEkg,3089
|
190
205
|
prefect/events/schemas/__init__.py,sha256=YUyTEY9yVEJAOXWLng7-WlgNlTlJ25kDNPey3pXkn4k,169
|
191
|
-
prefect/events/schemas/automations.py,sha256=
|
192
|
-
prefect/events/schemas/deployment_triggers.py,sha256=
|
193
|
-
prefect/events/schemas/events.py,sha256=
|
206
|
+
prefect/events/schemas/automations.py,sha256=cbWynCHH4dL9kuWDqQEZpHlZcU9vbZQ95BjsPUd5E2M,10013
|
207
|
+
prefect/events/schemas/deployment_triggers.py,sha256=A_7FVWH9jzAtbKByquPvN_09fKXHtXbLxwOmUJXkUXU,18422
|
208
|
+
prefect/events/schemas/events.py,sha256=ehshs6cdtl2stni9aLsGMQ5VIyDF1cAmAgW-smqmFpc,9224
|
194
209
|
prefect/events/schemas/labelling.py,sha256=CzAry2clY6oa8fpSDE43mFtecFFaH3QYz-fqYiE7XdU,3229
|
195
210
|
prefect/infrastructure/__init__.py,sha256=Fm1Rhc4I7ZfJePpUAl1F4iNEtcDugoT650WXXt6xoCM,770
|
196
211
|
prefect/infrastructure/base.py,sha256=s2nNbwXnqHV-sBy7LeZzV1IVjqAO0zv795HM4RHOvQI,10880
|
@@ -200,21 +215,21 @@ prefect/infrastructure/process.py,sha256=e03OmOOvXx08KNCQZas0D7SqHq4_b6QelLvIMkm
|
|
200
215
|
prefect/infrastructure/provisioners/__init__.py,sha256=e9rfFnLqqwjexvYoiRZIY-CEwK-7ZhCQm745Z-Uxon8,1666
|
201
216
|
prefect/infrastructure/provisioners/cloud_run.py,sha256=kqk8yRZ4gfGJLgCEJL8vNYvRyONe2Mc4e_0DHeEb0iM,17658
|
202
217
|
prefect/infrastructure/provisioners/container_instance.py,sha256=KgJ6-vbq32VLCBiYgrCeG68wa6DfJvA2AmJHCeOY5q8,41231
|
203
|
-
prefect/infrastructure/provisioners/ecs.py,sha256=
|
218
|
+
prefect/infrastructure/provisioners/ecs.py,sha256=HOURoT3psIUZY1AI-t-l2mT74JdbpW6ORTLG_RxlCyo,47674
|
204
219
|
prefect/infrastructure/provisioners/modal.py,sha256=mLblDjWWszXXMXWXYzkR_5s3nFFL6c3GvVX-VmIeU5A,9035
|
205
220
|
prefect/input/__init__.py,sha256=TPJ9UfG9_SiBze23sQwU1MnWI8AgyEMNihotgTebFQ0,627
|
206
221
|
prefect/input/actions.py,sha256=yITDUOsnNyslJKDinae6zKcX_1_3QMw8SFu7aTynjPM,3894
|
207
222
|
prefect/input/run_input.py,sha256=oj17jNtFAbn8qy91xr8jNrXqCIaA--Vn-hn6rYd5AZs,18023
|
208
223
|
prefect/logging/__init__.py,sha256=EnbHzgJE_-e4VM3jG5s7MCABYvZ7UGjntC6NfSdTqLg,112
|
209
|
-
prefect/logging/configuration.py,sha256=
|
224
|
+
prefect/logging/configuration.py,sha256=bYqFJm0QgLz92Dub1Lbl3JONjjm0lTK149pNAGbxPdM,3467
|
210
225
|
prefect/logging/filters.py,sha256=9keHLN4-cpnsWcii1qU0RITNi9-m7pOhkJ_t0MtCM4k,1117
|
211
226
|
prefect/logging/formatters.py,sha256=GaHYEgUSL-oJV47RHJ8gWoD7C1Rdpx4VeXhPwap1j-k,4082
|
212
227
|
prefect/logging/handlers.py,sha256=zypWVA9EbaKMimRnZWxjmYYmZE04pB7OP5zKwkrOYHQ,10685
|
213
228
|
prefect/logging/highlighters.py,sha256=BpSXOy0n3lFVvlKWa7jC-HetAiClFi9jnQtEq5-rgok,1681
|
214
229
|
prefect/logging/loggers.py,sha256=Ci8KgqKCG8R6fDAlnR8iiLTVTYuPIvaFIfcY-AFgCLM,9323
|
215
230
|
prefect/logging/logging.yml,sha256=UkEewf0c3_dURI2uCU4RrxkhI5Devoa1s93fl7hilcg,3160
|
216
|
-
prefect/pydantic/__init__.py,sha256=
|
217
|
-
prefect/pydantic/main.py,sha256=
|
231
|
+
prefect/pydantic/__init__.py,sha256=BsW32X7fvl44J1JQer1tkEpfleMtL2kL5Uy1KmwWvso,2714
|
232
|
+
prefect/pydantic/main.py,sha256=ups_UULBhCPhB-E7X7-Qgbpor1oJdqChRzpD0ZYQH8A,839
|
218
233
|
prefect/runner/__init__.py,sha256=d3DFUXy5BYd8Z4cppNN_6RTSddmr-KfnQ5Yw5vh8WL8,96
|
219
234
|
prefect/runner/runner.py,sha256=Kjx6KVnBgMoHWOwl2w4wLdCLxBxbbVql8KI714UUntM,48079
|
220
235
|
prefect/runner/server.py,sha256=mgjH5SPlj3xu0_pZHg15zw59OSJ5lIzTIZ101s281Oo,10655
|
@@ -231,40 +246,41 @@ prefect/software/__init__.py,sha256=cn7Hesmkv3unA3NynEiyB0Cj2jAzV17yfwjVsS5Ecso,
|
|
231
246
|
prefect/software/base.py,sha256=GV6a5RrLx3JaOg1RI44jZTsI_qbqNWbWF3uVO5csnHM,1464
|
232
247
|
prefect/software/conda.py,sha256=u5dTn0AcJlNq3o1UY-hA02WRT6e7xzA4pE-xiRvfItg,6695
|
233
248
|
prefect/software/pip.py,sha256=WMOo-uVu5Az5N-1lOG9hpW6uSscP__N1hn6Vi3ItJms,4039
|
234
|
-
prefect/software/python.py,sha256=
|
249
|
+
prefect/software/python.py,sha256=EssQ16aMvWSzzWagtNPfjQLu9ehieRwN0iWeqpBVtRU,1753
|
235
250
|
prefect/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
236
251
|
prefect/utilities/annotations.py,sha256=p33yhh1Zx8BZUlTtl8gKRbpwWU9FVnZ8cfYrcd5KxDI,3103
|
237
252
|
prefect/utilities/asyncutils.py,sha256=G4vjJ9IeWHLVAZTh0ilclHkhsBnZtsO6lzyDX75RtSU,15677
|
238
|
-
prefect/utilities/callables.py,sha256=
|
239
|
-
prefect/utilities/collections.py,sha256=
|
253
|
+
prefect/utilities/callables.py,sha256=vbgRqfd79iXbh4QhNX1Ig9MTIcj-aAgH5yLSqobd2sM,11657
|
254
|
+
prefect/utilities/collections.py,sha256=0v-NNXxYYzkUTCCNDMNB44AnDv9yj35UYouNraCqlo8,15449
|
240
255
|
prefect/utilities/compat.py,sha256=mNQZDnzyKaOqy-OV-DnmH_dc7CNF5nQgW_EsA4xMr7g,906
|
241
256
|
prefect/utilities/context.py,sha256=BThuUW94-IYgFYTeMIM9KMo8ShT3oiI7w5ajZHzU1j0,1377
|
242
|
-
prefect/utilities/dispatch.py,sha256=
|
257
|
+
prefect/utilities/dispatch.py,sha256=BSAuYf3uchA6giBB90Z9tsmnR94SAqHZMHl01fRuA64,5467
|
243
258
|
prefect/utilities/dockerutils.py,sha256=O5lIgCej5KGRYU2TC1NzNuIK595uOIWJilhZXYEVtOA,20180
|
259
|
+
prefect/utilities/engine.py,sha256=sjLIwCM5FRUxS8HspIj0-L0oQNt-7RNLXr8NYU2gtvg,21591
|
244
260
|
prefect/utilities/filesystem.py,sha256=M_TeZ1MftjBf7hDLWk-Iphir369TpJ1binMsBKiO9YE,4449
|
245
261
|
prefect/utilities/hashing.py,sha256=EOwZLmoIZImuSTxAvVqInabxJ-4RpEfYeg9e2EDQF8o,1752
|
246
262
|
prefect/utilities/importtools.py,sha256=isblzKv7EPo7HtnlKYpL4t-GJdtTjUSMmvXgXSMEVZM,11764
|
247
263
|
prefect/utilities/math.py,sha256=wLwcKVidpNeWQi1TUIWWLHGjlz9UgboX9FUGhx_CQzo,2821
|
248
264
|
prefect/utilities/names.py,sha256=x-stHcF7_tebJPvB1dz-5FvdXJXNBTg2kFZXSnIBBmk,1657
|
249
265
|
prefect/utilities/processutils.py,sha256=yo_GO48pZzgn4A0IK5irTAoqyUCYvWKDSqHXCrtP8c4,14547
|
250
|
-
prefect/utilities/pydantic.py,sha256=
|
266
|
+
prefect/utilities/pydantic.py,sha256=7WVEaVIePKta2-LW_ilsXlXDoK1hhcxDhRaDfIz11Ek,9229
|
251
267
|
prefect/utilities/render_swagger.py,sha256=h2UrORVN3f7gM4zurtMnySjQXZIOWbji3uMinpbkl8U,3717
|
252
268
|
prefect/utilities/services.py,sha256=u0Gpdw5pYceaSLCqOihGyFb2AlMBYE2P9Ts9qRb3N9Q,6584
|
253
269
|
prefect/utilities/slugify.py,sha256=57Vb14t13F3zm1P65KAu8nVeAz0iJCd1Qc5eMG-R5y8,169
|
254
270
|
prefect/utilities/templating.py,sha256=t32Gcsvvm8ibzdqXwcWzY7JkwftPn73FiiLYEnQWyKM,13237
|
255
271
|
prefect/utilities/text.py,sha256=eXGIsCcZ7h_6hy8T5GDQjL8GiKyktoOqavYub0QjgO4,445
|
256
|
-
prefect/utilities/visualization.py,sha256=
|
272
|
+
prefect/utilities/visualization.py,sha256=9Pc8ImgnBpnszWTFxYm42cmtHjNEAsGZ8ugkn8w_dJk,6501
|
257
273
|
prefect/utilities/schema_tools/__init__.py,sha256=YtbTThhL8nPEYm3ByTHeOLcj2fm8fXrsxB-ioBWoIek,284
|
258
274
|
prefect/utilities/schema_tools/hydration.py,sha256=tonsuKKmjnPnqzFTx441y9g3nhziiWlDesYJqezEmCQ,6181
|
259
|
-
prefect/utilities/schema_tools/validation.py,sha256=
|
275
|
+
prefect/utilities/schema_tools/validation.py,sha256=ZLfp80aQqA7j-jmreb-d_aOrxlzBlaCmxOHbEJ6cIqc,7989
|
260
276
|
prefect/workers/__init__.py,sha256=6el2Q856CuRPa5Hdrbm9QyAWB_ovcT2bImSFsoWI46k,66
|
261
|
-
prefect/workers/base.py,sha256=
|
262
|
-
prefect/workers/block.py,sha256=
|
263
|
-
prefect/workers/process.py,sha256=
|
277
|
+
prefect/workers/base.py,sha256=RgnveLqomr7m0Tla2-9mFy81XCny9TvpuvvBjlHw3bc,44977
|
278
|
+
prefect/workers/block.py,sha256=5bdCuqT-4I-et_8ZLG2y1AODzYiCQwFiivhdt5NMEog,7635
|
279
|
+
prefect/workers/process.py,sha256=OVGM7Vhnk1yY_EF6xEsRv9YQ-WhGJgV4b0YhqeRZ9t0,10102
|
264
280
|
prefect/workers/server.py,sha256=WVZJxR8nTMzK0ov0BD0xw5OyQpT26AxlXbsGQ1OrxeQ,1551
|
265
281
|
prefect/workers/utilities.py,sha256=VfPfAlGtTuDj0-Kb8WlMgAuOfgXCdrGAnKMapPSBrwc,2483
|
266
|
-
prefect_client-2.
|
267
|
-
prefect_client-2.
|
268
|
-
prefect_client-2.
|
269
|
-
prefect_client-2.
|
270
|
-
prefect_client-2.
|
282
|
+
prefect_client-2.17.0.dist-info/LICENSE,sha256=MCxsn8osAkzfxKC4CC_dLcUkU8DZLkyihZ8mGs3Ah3Q,11357
|
283
|
+
prefect_client-2.17.0.dist-info/METADATA,sha256=-Ma170bLtvzkeRqxBU_tJ1XkUEG-VkxCbNMiJf1dv20,7401
|
284
|
+
prefect_client-2.17.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
285
|
+
prefect_client-2.17.0.dist-info/top_level.txt,sha256=MJZYJgFdbRc2woQCeB4vM6T33tr01TmkEhRcns6H_H4,8
|
286
|
+
prefect_client-2.17.0.dist-info/RECORD,,
|