prefect-client 2.16.9__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/pydantic/__init__.py +4 -0
- prefect/_internal/pydantic/_base_model.py +36 -4
- prefect/_internal/pydantic/_compat.py +33 -2
- prefect/_internal/pydantic/_flags.py +3 -0
- prefect/_internal/pydantic/utilities/config_dict.py +72 -0
- prefect/_internal/pydantic/utilities/field_validator.py +135 -0
- prefect/_internal/pydantic/utilities/model_fields_set.py +29 -0
- prefect/_internal/pydantic/utilities/model_validator.py +79 -0
- prefect/agent.py +1 -1
- prefect/blocks/notifications.py +18 -18
- prefect/blocks/webhook.py +1 -1
- prefect/client/base.py +7 -0
- prefect/client/orchestration.py +44 -4
- prefect/client/schemas/actions.py +27 -20
- prefect/client/schemas/filters.py +28 -28
- prefect/client/schemas/objects.py +31 -21
- prefect/client/schemas/responses.py +17 -11
- prefect/client/schemas/schedules.py +6 -8
- prefect/context.py +2 -1
- prefect/deployments/base.py +2 -10
- prefect/deployments/deployments.py +34 -9
- prefect/deployments/runner.py +2 -2
- prefect/engine.py +32 -596
- prefect/events/clients.py +45 -13
- prefect/events/filters.py +19 -2
- 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 +4 -3
- prefect/manifests.py +1 -8
- prefect/profiles.toml +1 -1
- prefect/pydantic/__init__.py +27 -1
- prefect/pydantic/main.py +26 -2
- prefect/settings.py +33 -10
- prefect/task_server.py +2 -2
- prefect/utilities/dispatch.py +1 -0
- prefect/utilities/engine.py +629 -0
- prefect/utilities/pydantic.py +1 -1
- prefect/utilities/visualization.py +1 -1
- prefect/variables.py +88 -12
- prefect/workers/base.py +1 -1
- prefect/workers/block.py +1 -1
- {prefect_client-2.16.9.dist-info → prefect_client-2.17.0.dist-info}/METADATA +3 -3
- {prefect_client-2.16.9.dist-info → prefect_client-2.17.0.dist-info}/RECORD +50 -45
- {prefect_client-2.16.9.dist-info → prefect_client-2.17.0.dist-info}/LICENSE +0 -0
- {prefect_client-2.16.9.dist-info → prefect_client-2.17.0.dist-info}/WHEEL +0 -0
- {prefect_client-2.16.9.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
@@ -975,7 +975,7 @@ class BaseWorker(abc.ABC):
|
|
975
975
|
deployment = await self._client.read_deployment(flow_run.deployment_id)
|
976
976
|
flow = await self._client.read_flow(flow_run.flow_id)
|
977
977
|
|
978
|
-
deployment_vars = deployment.
|
978
|
+
deployment_vars = deployment.job_variables or {}
|
979
979
|
flow_run_vars = flow_run.job_variables or {}
|
980
980
|
job_variables = {**deployment_vars, **flow_run_vars}
|
981
981
|
|
prefect/workers/block.py
CHANGED
@@ -171,7 +171,7 @@ class BlockWorker(BaseWorker):
|
|
171
171
|
# attributes of the infrastructure block
|
172
172
|
doc_dict = infra_document.dict()
|
173
173
|
infra_dict = doc_dict.get("data", {})
|
174
|
-
for override, value in (deployment.
|
174
|
+
for override, value in (deployment.job_variables or {}).items():
|
175
175
|
nested_fields = override.split(".")
|
176
176
|
if nested_fields == ["command"]:
|
177
177
|
value = shlex.split(value)
|
@@ -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.
|
@@ -36,12 +36,12 @@ 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.
|
44
|
+
Requires-Dist: pydantic-core <3.0.0,>=2.12.0
|
45
45
|
Requires-Dist: python-dateutil <3.0.0,>=2.8.2
|
46
46
|
Requires-Dist: python-slugify <9.0,>=5.0
|
47
47
|
Requires-Dist: pyyaml <7.0.0,>=5.4.1
|
@@ -1,33 +1,33 @@
|
|
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
18
|
prefect/serializers.py,sha256=C1sZ06Tc1XmiUIDkdXZtzBR2jeXLYEz5rRDl0J5t1fw,8081
|
19
|
-
prefect/settings.py,sha256=
|
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=
|
30
|
+
prefect/_internal/compatibility/deprecated.py,sha256=2HYCVrVOfCWndiaGH0djl5mB_i1BjnGBOvT0btc7ZLk,11524
|
31
31
|
prefect/_internal/compatibility/experimental.py,sha256=ywG38cgmUNrZijnI-K8uJwCI0BQHJJci6lG8gl8HuH8,7458
|
32
32
|
prefect/_internal/concurrency/__init__.py,sha256=ncKwi1NhE3umSFGSKRk9wEVKzN1z1ZD-fmY4EDZHH_U,2142
|
33
33
|
prefect/_internal/concurrency/api.py,sha256=nrNENVcoFNbzo-RwdVSjA6VtfrXFQWcjTGYoacGcd8k,8223
|
@@ -39,10 +39,10 @@ prefect/_internal/concurrency/primitives.py,sha256=kxCPD9yLtCeqt-JIHjevL4Zt5FvrF
|
|
39
39
|
prefect/_internal/concurrency/services.py,sha256=aggJd4IUSB6ufppRYdRT-36daEg1JSpJCvK635R8meg,11951
|
40
40
|
prefect/_internal/concurrency/threads.py,sha256=-tReWZL9_XMkRS35SydAfeePH2vqCqb1CGM8lgrKT1I,7846
|
41
41
|
prefect/_internal/concurrency/waiters.py,sha256=93ZLbrul5qTne9Na-B4li02dlXJM6TVPf4sWmYSegg8,9911
|
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=
|
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
46
|
prefect/_internal/pydantic/_types.py,sha256=A1WD9OHyGoIp0gujl3ozCoXEd4OcySgjgbmHsMq9RTs,275
|
47
47
|
prefect/_internal/pydantic/schemas.py,sha256=tsRKq5yEIgiRbWMl3BPnbfNaKyDN6pq8WSs0M8SQMm4,452
|
48
48
|
prefect/_internal/pydantic/v1_schema.py,sha256=j_DDQqpP1xFsvkNSjWeviTnnFyNPPqou9n4M2lf3K2U,1133
|
@@ -51,15 +51,19 @@ prefect/_internal/pydantic/v2_validated_func.py,sha256=44I4o8jjiS7TYep-E6UYMwjpY
|
|
51
51
|
prefect/_internal/pydantic/annotations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
52
52
|
prefect/_internal/pydantic/annotations/pendulum.py,sha256=rWT6zzCtIqvK2_EuAkMt73ZzAvdE5tF2104e0-tIaa4,2625
|
53
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
|
54
56
|
prefect/_internal/pydantic/utilities/model_construct.py,sha256=Y7c5VJw4kPx-wNQ996QVBkZovdhlBsWyGB3CegWaoko,1876
|
55
57
|
prefect/_internal/pydantic/utilities/model_copy.py,sha256=YnuiakinWvCSo2wHVxDnjjYRZpMzjmfZ44J-E8kDAVo,1528
|
56
58
|
prefect/_internal/pydantic/utilities/model_dump.py,sha256=JNP9ngp2tMjmKQ0vlu022hrMWv78iUnPXnWw7c_Sj-g,5450
|
57
59
|
prefect/_internal/pydantic/utilities/model_dump_json.py,sha256=r5laFbDNcvAfUrBNXaMjRP_lirQgXL-s6hD9Ll-KKsY,4073
|
58
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
|
59
62
|
prefect/_internal/pydantic/utilities/model_json_schema.py,sha256=R0Gr-Xdit63BD08AF_f1rv5vcgZj91t3_Lr7QH6DL4o,2707
|
60
63
|
prefect/_internal/pydantic/utilities/model_rebuild.py,sha256=h6SbiczkFEeNqQYd8_P2JjsO3Y-YNY6ribM_JhB4hTM,3039
|
61
64
|
prefect/_internal/pydantic/utilities/model_validate.py,sha256=XPAhd8JmeKOxh3sB53HksHkk0YBM2k8VxscyP92brB0,2117
|
62
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
|
63
67
|
prefect/_internal/pydantic/utilities/type_adapter.py,sha256=rlQ77J263L570uIYKtX4Qud2Yyx9zCUH4j6Yec-0KcU,2352
|
64
68
|
prefect/_internal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
65
69
|
prefect/_internal/schemas/bases.py,sha256=lEZWz4vG3vxmfiAXFJyCZXtAE6_zCTMuFCI7aa3fREU,9348
|
@@ -149,23 +153,23 @@ prefect/blocks/abstract.py,sha256=Q-Pcbg_RbJNxdFITWg3zsKFVwXdcmbX1jBQwZqWSGCU,15
|
|
149
153
|
prefect/blocks/core.py,sha256=PGHU-EyXcBtHei5-KhvmMak3xLoine7Nn8BNSNvR_Yw,43498
|
150
154
|
prefect/blocks/fields.py,sha256=ANOzbNyDCBIvm6ktgbLTMs7JW2Sf6CruyATjAW61ks0,1607
|
151
155
|
prefect/blocks/kubernetes.py,sha256=IN-hZkzIRvqjd_dzPZby3q8p7m2oUWqArBq24BU9cDg,4071
|
152
|
-
prefect/blocks/notifications.py,sha256=
|
156
|
+
prefect/blocks/notifications.py,sha256=cMvyfN3UY4xpKwpC4nQt80uiKydgEF7SqJbRzM1N5BI,26932
|
153
157
|
prefect/blocks/system.py,sha256=Nlp-3315Hye3FJ5uhDovSPGBIEKi5UbCkAcy3hDxhKk,3057
|
154
|
-
prefect/blocks/webhook.py,sha256=
|
158
|
+
prefect/blocks/webhook.py,sha256=VzQ-qcRtW8MMuYEGYwFgt1QXtWedUtVmeTo7iE2UQ78,2008
|
155
159
|
prefect/client/__init__.py,sha256=yJ5FRF9RxNUio2V_HmyKCKw5G6CZO0h8cv6xA_Hkpcc,477
|
156
|
-
prefect/client/base.py,sha256=
|
160
|
+
prefect/client/base.py,sha256=ReaZW6Lyax3ATjs4HKHmlMHAoWEPk1Kut_X9H31KR9A,15427
|
157
161
|
prefect/client/cloud.py,sha256=97wWyWefq4Ngjs06HefD04obVGp6gms1PPt2D_vPYMs,4072
|
158
162
|
prefect/client/collections.py,sha256=I9EgbTg4Fn57gn8vwP_WdDmgnATbx9gfkm2jjhCORjw,1037
|
159
163
|
prefect/client/constants.py,sha256=Z_GG8KF70vbbXxpJuqW5pLnwzujTVeHbcYYRikNmGH0,29
|
160
|
-
prefect/client/orchestration.py,sha256=
|
164
|
+
prefect/client/orchestration.py,sha256=6IZTw_IpxM1R45NGJrppmGlPY0KvpoRYB9rONDn5NWc,112936
|
161
165
|
prefect/client/subscriptions.py,sha256=3kqPH3F-CwyrR5wygCpJMjRjM_gcQjd54Qjih6FcLlA,3372
|
162
166
|
prefect/client/utilities.py,sha256=oGU8dJIq7ExEF4WFt-0aSPNX0JP7uH6NmfRlNhfJu00,2660
|
163
167
|
prefect/client/schemas/__init__.py,sha256=KlyqFV-hMulMkNstBn_0ijoHoIwJZaBj6B1r07UmgvE,607
|
164
|
-
prefect/client/schemas/actions.py,sha256=
|
165
|
-
prefect/client/schemas/filters.py,sha256=
|
166
|
-
prefect/client/schemas/objects.py,sha256=
|
167
|
-
prefect/client/schemas/responses.py,sha256=
|
168
|
-
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
|
169
173
|
prefect/client/schemas/sorting.py,sha256=Y-ea8k_vTUKAPKIxqGebwLSXM7x1s5mJ_4-sDd1Ivi8,2276
|
170
174
|
prefect/concurrency/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
171
175
|
prefect/concurrency/asyncio.py,sha256=S7FXJmzva4DDS3sOMBfWhM1Kimwu7zdEAqSPsM6qkr0,3055
|
@@ -174,9 +178,9 @@ prefect/concurrency/events.py,sha256=TGWsKaWddT_1ObfwSNeG64QoVaeWQP9k6vJv2duJHeY
|
|
174
178
|
prefect/concurrency/services.py,sha256=LQQXBFNUQTlAnHbdrr6GYcEExpGSaQzb-ZiqKk4rQPk,2522
|
175
179
|
prefect/concurrency/sync.py,sha256=AChhkA6hykgnnPmIeOp87jauLL0p_lrSwMwUoeuYprI,2148
|
176
180
|
prefect/deployments/__init__.py,sha256=HcC8IEOMaTz98M8uGsxAGITW11PS744XNsQBFz62Qow,441
|
177
|
-
prefect/deployments/base.py,sha256=
|
178
|
-
prefect/deployments/deployments.py,sha256=
|
179
|
-
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
|
180
184
|
prefect/deployments/schedules.py,sha256=23GDCAKOP-aAEKGappwTrM4HU67ndVH7NR4Dq0neU_U,1884
|
181
185
|
prefect/deployments/steps/__init__.py,sha256=3pZWONAZzenDszqNQT3bmTFilnvjB6xMolMz9tr5pLw,229
|
182
186
|
prefect/deployments/steps/core.py,sha256=Mg2F5GBJyO-jBAAP7PGtIu1sZgNsvmw5Jn5Qj-bUlgk,6617
|
@@ -192,12 +196,12 @@ prefect/deprecated/packaging/orion.py,sha256=3vRudge_XI4JX3aVxtK2QQvfHQ836C2maNJ
|
|
192
196
|
prefect/deprecated/packaging/serializers.py,sha256=4nEA_bz9cgv8J3DbMq37SO36P__nqeZuyKQbRoHmjrM,5164
|
193
197
|
prefect/events/__init__.py,sha256=MykLdP-RCUoTgly7ZTF0wLInU2mlGyMfdb1wboExoFQ,1133
|
194
198
|
prefect/events/actions.py,sha256=4JgBB72l07q3YmKycMi1TI469ElX0usiAB_kUfB1Ix4,1776
|
195
|
-
prefect/events/clients.py,sha256=
|
196
|
-
prefect/events/filters.py,sha256=
|
199
|
+
prefect/events/clients.py,sha256=Lknnat6BuGgREAw3LOGFLh8FZhLeU9ICSdSVHOvsdsQ,15141
|
200
|
+
prefect/events/filters.py,sha256=xZlfUrPmjRl6z-PAv-pudnwexrndSk84CVJTUJ7kppc,7374
|
197
201
|
prefect/events/instrument.py,sha256=uNiD7AnkfuiwTsCMgNyJURmY9H2tXNfLCb3EC5FL0Qw,3805
|
198
202
|
prefect/events/related.py,sha256=LnnF-31Jaul3nC1H8HxKrcflgl2H6q1cL9tBZGqvH0w,6755
|
199
|
-
prefect/events/utilities.py,sha256
|
200
|
-
prefect/events/worker.py,sha256=
|
203
|
+
prefect/events/utilities.py,sha256=V9wTAYxV1jLGAnfTVmC8peu_ASE26zFUqqPTvJPJZ0Q,2544
|
204
|
+
prefect/events/worker.py,sha256=vpI26ERQzcctnO1izvXUH3-ginPZLnhc4JPh-x5bEkg,3089
|
201
205
|
prefect/events/schemas/__init__.py,sha256=YUyTEY9yVEJAOXWLng7-WlgNlTlJ25kDNPey3pXkn4k,169
|
202
206
|
prefect/events/schemas/automations.py,sha256=cbWynCHH4dL9kuWDqQEZpHlZcU9vbZQ95BjsPUd5E2M,10013
|
203
207
|
prefect/events/schemas/deployment_triggers.py,sha256=A_7FVWH9jzAtbKByquPvN_09fKXHtXbLxwOmUJXkUXU,18422
|
@@ -224,8 +228,8 @@ prefect/logging/handlers.py,sha256=zypWVA9EbaKMimRnZWxjmYYmZE04pB7OP5zKwkrOYHQ,1
|
|
224
228
|
prefect/logging/highlighters.py,sha256=BpSXOy0n3lFVvlKWa7jC-HetAiClFi9jnQtEq5-rgok,1681
|
225
229
|
prefect/logging/loggers.py,sha256=Ci8KgqKCG8R6fDAlnR8iiLTVTYuPIvaFIfcY-AFgCLM,9323
|
226
230
|
prefect/logging/logging.yml,sha256=UkEewf0c3_dURI2uCU4RrxkhI5Devoa1s93fl7hilcg,3160
|
227
|
-
prefect/pydantic/__init__.py,sha256=
|
228
|
-
prefect/pydantic/main.py,sha256=
|
231
|
+
prefect/pydantic/__init__.py,sha256=BsW32X7fvl44J1JQer1tkEpfleMtL2kL5Uy1KmwWvso,2714
|
232
|
+
prefect/pydantic/main.py,sha256=ups_UULBhCPhB-E7X7-Qgbpor1oJdqChRzpD0ZYQH8A,839
|
229
233
|
prefect/runner/__init__.py,sha256=d3DFUXy5BYd8Z4cppNN_6RTSddmr-KfnQ5Yw5vh8WL8,96
|
230
234
|
prefect/runner/runner.py,sha256=Kjx6KVnBgMoHWOwl2w4wLdCLxBxbbVql8KI714UUntM,48079
|
231
235
|
prefect/runner/server.py,sha256=mgjH5SPlj3xu0_pZHg15zw59OSJ5lIzTIZ101s281Oo,10655
|
@@ -250,32 +254,33 @@ prefect/utilities/callables.py,sha256=vbgRqfd79iXbh4QhNX1Ig9MTIcj-aAgH5yLSqobd2s
|
|
250
254
|
prefect/utilities/collections.py,sha256=0v-NNXxYYzkUTCCNDMNB44AnDv9yj35UYouNraCqlo8,15449
|
251
255
|
prefect/utilities/compat.py,sha256=mNQZDnzyKaOqy-OV-DnmH_dc7CNF5nQgW_EsA4xMr7g,906
|
252
256
|
prefect/utilities/context.py,sha256=BThuUW94-IYgFYTeMIM9KMo8ShT3oiI7w5ajZHzU1j0,1377
|
253
|
-
prefect/utilities/dispatch.py,sha256=
|
257
|
+
prefect/utilities/dispatch.py,sha256=BSAuYf3uchA6giBB90Z9tsmnR94SAqHZMHl01fRuA64,5467
|
254
258
|
prefect/utilities/dockerutils.py,sha256=O5lIgCej5KGRYU2TC1NzNuIK595uOIWJilhZXYEVtOA,20180
|
259
|
+
prefect/utilities/engine.py,sha256=sjLIwCM5FRUxS8HspIj0-L0oQNt-7RNLXr8NYU2gtvg,21591
|
255
260
|
prefect/utilities/filesystem.py,sha256=M_TeZ1MftjBf7hDLWk-Iphir369TpJ1binMsBKiO9YE,4449
|
256
261
|
prefect/utilities/hashing.py,sha256=EOwZLmoIZImuSTxAvVqInabxJ-4RpEfYeg9e2EDQF8o,1752
|
257
262
|
prefect/utilities/importtools.py,sha256=isblzKv7EPo7HtnlKYpL4t-GJdtTjUSMmvXgXSMEVZM,11764
|
258
263
|
prefect/utilities/math.py,sha256=wLwcKVidpNeWQi1TUIWWLHGjlz9UgboX9FUGhx_CQzo,2821
|
259
264
|
prefect/utilities/names.py,sha256=x-stHcF7_tebJPvB1dz-5FvdXJXNBTg2kFZXSnIBBmk,1657
|
260
265
|
prefect/utilities/processutils.py,sha256=yo_GO48pZzgn4A0IK5irTAoqyUCYvWKDSqHXCrtP8c4,14547
|
261
|
-
prefect/utilities/pydantic.py,sha256=
|
266
|
+
prefect/utilities/pydantic.py,sha256=7WVEaVIePKta2-LW_ilsXlXDoK1hhcxDhRaDfIz11Ek,9229
|
262
267
|
prefect/utilities/render_swagger.py,sha256=h2UrORVN3f7gM4zurtMnySjQXZIOWbji3uMinpbkl8U,3717
|
263
268
|
prefect/utilities/services.py,sha256=u0Gpdw5pYceaSLCqOihGyFb2AlMBYE2P9Ts9qRb3N9Q,6584
|
264
269
|
prefect/utilities/slugify.py,sha256=57Vb14t13F3zm1P65KAu8nVeAz0iJCd1Qc5eMG-R5y8,169
|
265
270
|
prefect/utilities/templating.py,sha256=t32Gcsvvm8ibzdqXwcWzY7JkwftPn73FiiLYEnQWyKM,13237
|
266
271
|
prefect/utilities/text.py,sha256=eXGIsCcZ7h_6hy8T5GDQjL8GiKyktoOqavYub0QjgO4,445
|
267
|
-
prefect/utilities/visualization.py,sha256=
|
272
|
+
prefect/utilities/visualization.py,sha256=9Pc8ImgnBpnszWTFxYm42cmtHjNEAsGZ8ugkn8w_dJk,6501
|
268
273
|
prefect/utilities/schema_tools/__init__.py,sha256=YtbTThhL8nPEYm3ByTHeOLcj2fm8fXrsxB-ioBWoIek,284
|
269
274
|
prefect/utilities/schema_tools/hydration.py,sha256=tonsuKKmjnPnqzFTx441y9g3nhziiWlDesYJqezEmCQ,6181
|
270
275
|
prefect/utilities/schema_tools/validation.py,sha256=ZLfp80aQqA7j-jmreb-d_aOrxlzBlaCmxOHbEJ6cIqc,7989
|
271
276
|
prefect/workers/__init__.py,sha256=6el2Q856CuRPa5Hdrbm9QyAWB_ovcT2bImSFsoWI46k,66
|
272
|
-
prefect/workers/base.py,sha256=
|
273
|
-
prefect/workers/block.py,sha256=
|
277
|
+
prefect/workers/base.py,sha256=RgnveLqomr7m0Tla2-9mFy81XCny9TvpuvvBjlHw3bc,44977
|
278
|
+
prefect/workers/block.py,sha256=5bdCuqT-4I-et_8ZLG2y1AODzYiCQwFiivhdt5NMEog,7635
|
274
279
|
prefect/workers/process.py,sha256=OVGM7Vhnk1yY_EF6xEsRv9YQ-WhGJgV4b0YhqeRZ9t0,10102
|
275
280
|
prefect/workers/server.py,sha256=WVZJxR8nTMzK0ov0BD0xw5OyQpT26AxlXbsGQ1OrxeQ,1551
|
276
281
|
prefect/workers/utilities.py,sha256=VfPfAlGtTuDj0-Kb8WlMgAuOfgXCdrGAnKMapPSBrwc,2483
|
277
|
-
prefect_client-2.
|
278
|
-
prefect_client-2.
|
279
|
-
prefect_client-2.
|
280
|
-
prefect_client-2.
|
281
|
-
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,,
|
File without changes
|
File without changes
|
File without changes
|