prefect-client 3.3.2.dev1__py3-none-any.whl → 3.3.2.dev2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- prefect/_build_info.py +3 -3
- prefect/_internal/compatibility/deprecated.py +1 -1
- prefect/_internal/pydantic/v2_schema.py +1 -0
- prefect/blocks/core.py +9 -12
- prefect/client/schemas/objects.py +11 -0
- prefect/client/schemas/responses.py +26 -1
- prefect/events/related.py +5 -3
- prefect/flows.py +2 -1
- prefect/runner/runner.py +2 -18
- prefect/schedules.py +2 -2
- prefect/server/api/flow_runs.py +15 -14
- prefect/server/api/run_history.py +1 -1
- prefect/settings/base.py +1 -1
- prefect/settings/models/root.py +10 -5
- {prefect_client-3.3.2.dev1.dist-info → prefect_client-3.3.2.dev2.dist-info}/METADATA +1 -1
- {prefect_client-3.3.2.dev1.dist-info → prefect_client-3.3.2.dev2.dist-info}/RECORD +18 -18
- {prefect_client-3.3.2.dev1.dist-info → prefect_client-3.3.2.dev2.dist-info}/WHEEL +0 -0
- {prefect_client-3.3.2.dev1.dist-info → prefect_client-3.3.2.dev2.dist-info}/licenses/LICENSE +0 -0
prefect/_build_info.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# Generated by versioningit
|
2
|
-
__version__ = "3.3.2.
|
3
|
-
__build_date__ = "2025-04-
|
4
|
-
__git_commit__ = "
|
2
|
+
__version__ = "3.3.2.dev2"
|
3
|
+
__build_date__ = "2025-04-03 08:08:10.651077+00:00"
|
4
|
+
__git_commit__ = "6d3d12cfe81fa08c1b14f99867e2e621816d1a89"
|
5
5
|
__dirty__ = False
|
@@ -255,7 +255,7 @@ def deprecated_field(
|
|
255
255
|
|
256
256
|
cls_init(__pydantic_self__, **data)
|
257
257
|
|
258
|
-
field = __pydantic_self__.model_fields.get(name)
|
258
|
+
field = __pydantic_self__.__class__.model_fields.get(name)
|
259
259
|
if field is not None:
|
260
260
|
json_schema_extra = field.json_schema_extra or {}
|
261
261
|
|
prefect/blocks/core.py
CHANGED
@@ -18,6 +18,7 @@ from typing import (
|
|
18
18
|
Optional,
|
19
19
|
TypeVar,
|
20
20
|
Union,
|
21
|
+
cast,
|
21
22
|
get_origin,
|
22
23
|
)
|
23
24
|
from uuid import UUID, uuid4
|
@@ -169,14 +170,13 @@ def _collect_secret_fields(
|
|
169
170
|
return
|
170
171
|
|
171
172
|
if type_ in (SecretStr, SecretBytes) or (
|
172
|
-
isinstance(type_, type)
|
173
|
+
isinstance(type_, type) # type: ignore[unnecessaryIsInstance]
|
173
174
|
and getattr(type_, "__module__", None) == "pydantic.types"
|
174
175
|
and getattr(type_, "__name__", None) == "Secret"
|
175
176
|
):
|
176
177
|
secrets.append(name)
|
177
178
|
elif type_ == SecretDict:
|
178
|
-
# Append .* to field name to signify that all values under
|
179
|
-
# field are secret and should be obfuscated.
|
179
|
+
# Append .* to field name to signify that all values under a given key are secret and should be obfuscated.
|
180
180
|
secrets.append(f"{name}.*")
|
181
181
|
elif Block.is_block_class(type_):
|
182
182
|
secrets.extend(
|
@@ -1501,14 +1501,7 @@ class Block(BaseModel, ABC):
|
|
1501
1501
|
if "$defs" in schema:
|
1502
1502
|
schema["definitions"] = schema.pop("$defs")
|
1503
1503
|
|
1504
|
-
|
1505
|
-
if "additionalProperties" in schema:
|
1506
|
-
schema.pop("additionalProperties")
|
1507
|
-
|
1508
|
-
for _, definition in schema.get("definitions", {}).items():
|
1509
|
-
if "additionalProperties" in definition:
|
1510
|
-
definition.pop("additionalProperties")
|
1511
|
-
|
1504
|
+
schema = remove_nested_keys(["additionalProperties"], schema)
|
1512
1505
|
return schema
|
1513
1506
|
|
1514
1507
|
@classmethod
|
@@ -1521,6 +1514,7 @@ class Block(BaseModel, ABC):
|
|
1521
1514
|
context: dict[str, Any] | None = None,
|
1522
1515
|
) -> Self:
|
1523
1516
|
if isinstance(obj, dict):
|
1517
|
+
obj = cast(dict[str, Any], obj)
|
1524
1518
|
extra_serializer_fields = {
|
1525
1519
|
"_block_document_id",
|
1526
1520
|
"_block_document_name",
|
@@ -1530,7 +1524,10 @@ class Block(BaseModel, ABC):
|
|
1530
1524
|
obj.pop(field, None)
|
1531
1525
|
|
1532
1526
|
return super().model_validate(
|
1533
|
-
obj,
|
1527
|
+
obj,
|
1528
|
+
strict=strict,
|
1529
|
+
from_attributes=from_attributes,
|
1530
|
+
context=context,
|
1534
1531
|
)
|
1535
1532
|
|
1536
1533
|
def model_dump(
|
@@ -1102,6 +1102,11 @@ class DeploymentSchedule(ObjectBaseModel):
|
|
1102
1102
|
)
|
1103
1103
|
|
1104
1104
|
|
1105
|
+
class VersionInfo(PrefectBaseModel, extra="allow"):
|
1106
|
+
type: str = Field(default=..., description="The type of version info.")
|
1107
|
+
version: str = Field(default=..., description="The version of the deployment.")
|
1108
|
+
|
1109
|
+
|
1105
1110
|
class Deployment(ObjectBaseModel):
|
1106
1111
|
"""An ORM representation of deployment data."""
|
1107
1112
|
|
@@ -1109,6 +1114,12 @@ class Deployment(ObjectBaseModel):
|
|
1109
1114
|
version: Optional[str] = Field(
|
1110
1115
|
default=None, description="An optional version for the deployment."
|
1111
1116
|
)
|
1117
|
+
version_id: Optional[UUID] = Field(
|
1118
|
+
default=None, description="The ID of the current version of the deployment."
|
1119
|
+
)
|
1120
|
+
version_info: Optional[VersionInfo] = Field(
|
1121
|
+
default=None, description="A description of this version of the deployment."
|
1122
|
+
)
|
1112
1123
|
description: Optional[str] = Field(
|
1113
1124
|
default=None, description="A description for the deployment."
|
1114
1125
|
)
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import datetime
|
2
|
-
from typing import Any, ClassVar, Generic, Optional, TypeVar, Union
|
2
|
+
from typing import TYPE_CHECKING, Any, ClassVar, Generic, Optional, TypeVar, Union
|
3
3
|
from uuid import UUID
|
4
4
|
|
5
5
|
from pydantic import ConfigDict, Field
|
@@ -12,6 +12,9 @@ from prefect.types import DateTime, KeyValueLabelsField
|
|
12
12
|
from prefect.utilities.collections import AutoEnum
|
13
13
|
from prefect.utilities.names import generate_slug
|
14
14
|
|
15
|
+
if TYPE_CHECKING:
|
16
|
+
from prefect.events.schemas.events import RelatedResource
|
17
|
+
|
15
18
|
T = TypeVar("T")
|
16
19
|
|
17
20
|
|
@@ -308,6 +311,12 @@ class DeploymentResponse(ObjectBaseModel):
|
|
308
311
|
version: Optional[str] = Field(
|
309
312
|
default=None, description="An optional version for the deployment."
|
310
313
|
)
|
314
|
+
version_id: Optional[UUID] = Field(
|
315
|
+
default=None, description="The ID of the current version of the deployment."
|
316
|
+
)
|
317
|
+
version_info: Optional[objects.VersionInfo] = Field(
|
318
|
+
default=None, description="A description of this version of the deployment."
|
319
|
+
)
|
311
320
|
description: Optional[str] = Field(
|
312
321
|
default=None, description="A description for the deployment."
|
313
322
|
)
|
@@ -420,6 +429,22 @@ class DeploymentResponse(ObjectBaseModel):
|
|
420
429
|
description="Current status of the deployment.",
|
421
430
|
)
|
422
431
|
|
432
|
+
def as_related_resource(self, role: str = "deployment") -> "RelatedResource":
|
433
|
+
from prefect.events.schemas.events import RelatedResource
|
434
|
+
|
435
|
+
labels = {
|
436
|
+
"prefect.resource.id": f"prefect.deployment.{self.id}",
|
437
|
+
"prefect.resource.role": role,
|
438
|
+
"prefect.resource.name": self.name,
|
439
|
+
}
|
440
|
+
|
441
|
+
if self.version_id and self.version_info:
|
442
|
+
labels["prefect.deployment.version-id"] = str(self.version_id)
|
443
|
+
labels["prefect.deployment.version-type"] = self.version_info.type
|
444
|
+
labels["prefect.deployment.version"] = self.version_info.version
|
445
|
+
|
446
|
+
return RelatedResource(labels)
|
447
|
+
|
423
448
|
|
424
449
|
class MinimalConcurrencyLimitResponse(PrefectBaseModel):
|
425
450
|
model_config: ClassVar[ConfigDict] = ConfigDict(extra="ignore")
|
prefect/events/related.py
CHANGED
@@ -33,7 +33,7 @@ RESOURCE_CACHE: RelatedResourceCache = {}
|
|
33
33
|
|
34
34
|
def tags_as_related_resources(tags: Iterable[str]) -> List[RelatedResource]:
|
35
35
|
return [
|
36
|
-
RelatedResource
|
36
|
+
RelatedResource(
|
37
37
|
{
|
38
38
|
"prefect.resource.id": f"prefect.tag.{tag}",
|
39
39
|
"prefect.resource.role": "tag",
|
@@ -44,9 +44,11 @@ def tags_as_related_resources(tags: Iterable[str]) -> List[RelatedResource]:
|
|
44
44
|
|
45
45
|
|
46
46
|
def object_as_related_resource(kind: str, role: str, object: Any) -> RelatedResource:
|
47
|
-
|
47
|
+
if as_related_resource := getattr(object, "as_related_resource", None):
|
48
|
+
return as_related_resource(role=role)
|
48
49
|
|
49
|
-
|
50
|
+
resource_id = f"prefect.{kind}.{object.id}"
|
51
|
+
return RelatedResource(
|
50
52
|
{
|
51
53
|
"prefect.resource.id": resource_id,
|
52
54
|
"prefect.resource.role": role,
|
prefect/flows.py
CHANGED
@@ -636,7 +636,8 @@ class Flow(Generic[P, R]):
|
|
636
636
|
cast_parameters = {
|
637
637
|
k: v
|
638
638
|
for k, v in dict(iter(model)).items()
|
639
|
-
if k in model.model_fields_set
|
639
|
+
if k in model.model_fields_set
|
640
|
+
or type(model).model_fields[k].default_factory
|
640
641
|
}
|
641
642
|
return cast_parameters
|
642
643
|
|
prefect/runner/runner.py
CHANGED
@@ -1158,15 +1158,7 @@ class Runner:
|
|
1158
1158
|
|
1159
1159
|
flow, deployment = await self._get_flow_and_deployment(flow_run)
|
1160
1160
|
if deployment:
|
1161
|
-
related.append(
|
1162
|
-
RelatedResource(
|
1163
|
-
{
|
1164
|
-
"prefect.resource.id": f"prefect.deployment.{deployment.id}",
|
1165
|
-
"prefect.resource.role": "deployment",
|
1166
|
-
"prefect.resource.name": deployment.name,
|
1167
|
-
}
|
1168
|
-
)
|
1169
|
-
)
|
1161
|
+
related.append(deployment.as_related_resource())
|
1170
1162
|
tags.extend(deployment.tags)
|
1171
1163
|
if flow:
|
1172
1164
|
related.append(
|
@@ -1211,15 +1203,7 @@ class Runner:
|
|
1211
1203
|
related: list[RelatedResource] = []
|
1212
1204
|
tags: list[str] = []
|
1213
1205
|
if deployment:
|
1214
|
-
related.append(
|
1215
|
-
RelatedResource(
|
1216
|
-
{
|
1217
|
-
"prefect.resource.id": f"prefect.deployment.{deployment.id}",
|
1218
|
-
"prefect.resource.role": "deployment",
|
1219
|
-
"prefect.resource.name": deployment.name,
|
1220
|
-
}
|
1221
|
-
)
|
1222
|
-
)
|
1206
|
+
related.append(deployment.as_related_resource())
|
1223
1207
|
tags.extend(deployment.tags)
|
1224
1208
|
if flow:
|
1225
1209
|
related.append(
|
prefect/schedules.py
CHANGED
@@ -47,7 +47,7 @@ class Schedule:
|
|
47
47
|
anchor_date: datetime.datetime = dataclasses.field(
|
48
48
|
default_factory=partial(datetime.datetime.now, tz=datetime.timezone.utc)
|
49
49
|
)
|
50
|
-
day_or: bool =
|
50
|
+
day_or: bool = True
|
51
51
|
active: bool = True
|
52
52
|
parameters: dict[str, Any] = dataclasses.field(default_factory=dict)
|
53
53
|
slug: str | None = None
|
@@ -73,7 +73,7 @@ def Cron(
|
|
73
73
|
cron: str,
|
74
74
|
/,
|
75
75
|
timezone: str | None = None,
|
76
|
-
day_or: bool =
|
76
|
+
day_or: bool = True,
|
77
77
|
active: bool = True,
|
78
78
|
parameters: dict[str, Any] | None = None,
|
79
79
|
slug: str | None = None,
|
prefect/server/api/flow_runs.py
CHANGED
@@ -181,12 +181,12 @@ async def update_flow_run(
|
|
181
181
|
|
182
182
|
@router.post("/count")
|
183
183
|
async def count_flow_runs(
|
184
|
-
flows: schemas.filters.FlowFilter = None,
|
185
|
-
flow_runs: schemas.filters.FlowRunFilter = None,
|
186
|
-
task_runs: schemas.filters.TaskRunFilter = None,
|
187
|
-
deployments: schemas.filters.DeploymentFilter = None,
|
188
|
-
work_pools: schemas.filters.WorkPoolFilter = None,
|
189
|
-
work_pool_queues: schemas.filters.WorkQueueFilter = None,
|
184
|
+
flows: Optional[schemas.filters.FlowFilter] = None,
|
185
|
+
flow_runs: Optional[schemas.filters.FlowRunFilter] = None,
|
186
|
+
task_runs: Optional[schemas.filters.TaskRunFilter] = None,
|
187
|
+
deployments: Optional[schemas.filters.DeploymentFilter] = None,
|
188
|
+
work_pools: Optional[schemas.filters.WorkPoolFilter] = None,
|
189
|
+
work_pool_queues: Optional[schemas.filters.WorkQueueFilter] = None,
|
190
190
|
db: PrefectDBInterface = Depends(provide_database_interface),
|
191
191
|
) -> int:
|
192
192
|
"""
|
@@ -279,12 +279,12 @@ async def flow_run_history(
|
|
279
279
|
json_schema_extra={"format": "time-delta"},
|
280
280
|
alias="history_interval_seconds",
|
281
281
|
),
|
282
|
-
flows: schemas.filters.FlowFilter = None,
|
283
|
-
flow_runs: schemas.filters.FlowRunFilter = None,
|
284
|
-
task_runs: schemas.filters.TaskRunFilter = None,
|
285
|
-
deployments: schemas.filters.DeploymentFilter = None,
|
286
|
-
work_pools: schemas.filters.WorkPoolFilter = None,
|
287
|
-
work_queues: schemas.filters.WorkQueueFilter = None,
|
282
|
+
flows: Optional[schemas.filters.FlowFilter] = None,
|
283
|
+
flow_runs: Optional[schemas.filters.FlowRunFilter] = None,
|
284
|
+
task_runs: Optional[schemas.filters.TaskRunFilter] = None,
|
285
|
+
deployments: Optional[schemas.filters.DeploymentFilter] = None,
|
286
|
+
work_pools: Optional[schemas.filters.WorkPoolFilter] = None,
|
287
|
+
work_queues: Optional[schemas.filters.WorkQueueFilter] = None,
|
288
288
|
db: PrefectDBInterface = Depends(provide_database_interface),
|
289
289
|
) -> List[schemas.responses.HistoryResponse]:
|
290
290
|
"""
|
@@ -293,6 +293,7 @@ async def flow_run_history(
|
|
293
293
|
if isinstance(history_interval, float):
|
294
294
|
history_interval = datetime.timedelta(seconds=history_interval)
|
295
295
|
|
296
|
+
assert isinstance(history_interval, datetime.timedelta)
|
296
297
|
if history_interval < datetime.timedelta(seconds=1):
|
297
298
|
raise HTTPException(
|
298
299
|
status.HTTP_422_UNPROCESSABLE_ENTITY,
|
@@ -351,8 +352,8 @@ async def read_flow_run_graph_v1(
|
|
351
352
|
@router.get("/{id:uuid}/graph-v2", tags=["Flow Run Graph"])
|
352
353
|
async def read_flow_run_graph_v2(
|
353
354
|
flow_run_id: UUID = Path(..., description="The flow run id", alias="id"),
|
354
|
-
since:
|
355
|
-
default=jsonable_encoder(
|
355
|
+
since: datetime.datetime = Query(
|
356
|
+
default=jsonable_encoder(datetime.datetime.min),
|
356
357
|
description="Only include runs that start or end after this time.",
|
357
358
|
),
|
358
359
|
db: PrefectDBInterface = Depends(provide_database_interface),
|
@@ -36,7 +36,7 @@ async def run_history(
|
|
36
36
|
deployments: Optional[schemas.filters.DeploymentFilter] = None,
|
37
37
|
work_pools: Optional[schemas.filters.WorkPoolFilter] = None,
|
38
38
|
work_queues: Optional[schemas.filters.WorkQueueFilter] = None,
|
39
|
-
) ->
|
39
|
+
) -> list[schemas.responses.HistoryResponse]:
|
40
40
|
"""
|
41
41
|
Produce a history of runs aggregated by interval and state
|
42
42
|
"""
|
prefect/settings/base.py
CHANGED
@@ -134,7 +134,7 @@ class PrefectBaseSettings(BaseSettings):
|
|
134
134
|
def ser_model(
|
135
135
|
self, handler: SerializerFunctionWrapHandler, info: SerializationInfo
|
136
136
|
) -> Any:
|
137
|
-
jsonable_self = handler(self)
|
137
|
+
jsonable_self: dict[str, Any] = handler(self)
|
138
138
|
# iterate over fields to ensure child models that have been updated are also included
|
139
139
|
for key in type(self).model_fields.keys():
|
140
140
|
if info.exclude and key in info.exclude:
|
prefect/settings/models/root.py
CHANGED
@@ -276,12 +276,17 @@ class Settings(PrefectBaseSettings):
|
|
276
276
|
for r in restore_defaults or []:
|
277
277
|
path = r.accessor.split(".")
|
278
278
|
model = self
|
279
|
+
model_cls = model.__class__
|
280
|
+
model_fields = model_cls.model_fields
|
279
281
|
for key in path[:-1]:
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
282
|
+
model_field = model_fields[key]
|
283
|
+
model_cls = model_field.annotation
|
284
|
+
if model_cls is None:
|
285
|
+
raise ValueError(f"Invalid setting path: {r.accessor}")
|
286
|
+
model_fields = model_cls.model_fields
|
287
|
+
|
288
|
+
model_field = model_fields[path[-1]]
|
289
|
+
assert model_field is not None, f"Invalid setting path: {r.accessor}"
|
285
290
|
if hasattr(model_field, "default"):
|
286
291
|
default = model_field.default
|
287
292
|
elif (
|
@@ -1,7 +1,7 @@
|
|
1
1
|
prefect/.prefectignore,sha256=awSprvKT0vI8a64mEOLrMxhxqcO-b0ERQeYpA2rNKVQ,390
|
2
2
|
prefect/__init__.py,sha256=iCdcC5ZmeewikCdnPEP6YBAjPNV5dvfxpYCTpw30Hkw,3685
|
3
3
|
prefect/__main__.py,sha256=WFjw3kaYJY6pOTA7WDOgqjsz8zUEUZHCcj3P5wyVa-g,66
|
4
|
-
prefect/_build_info.py,sha256=
|
4
|
+
prefect/_build_info.py,sha256=8Nc8NcbIDZ9djzkeEomk1WOEdmQddb0Ae-XmePNGZQo,185
|
5
5
|
prefect/_result_records.py,sha256=S6QmsODkehGVSzbMm6ig022PYbI6gNKz671p_8kBYx4,7789
|
6
6
|
prefect/_waiters.py,sha256=Ia2ITaXdHzevtyWIgJoOg95lrEXQqNEOquHvw3T33UQ,9026
|
7
7
|
prefect/agent.py,sha256=dPvG1jDGD5HSH7aM2utwtk6RaJ9qg13XjkA0lAIgQmY,287
|
@@ -14,13 +14,13 @@ prefect/exceptions.py,sha256=wZLQQMRB_DyiYkeEdIC5OKwbba5A94Dlnics-lrWI7A,11581
|
|
14
14
|
prefect/filesystems.py,sha256=v5YqGB4uXf9Ew2VuB9VCSkawvYMMVvEtZf7w1VmAmr8,18036
|
15
15
|
prefect/flow_engine.py,sha256=hZpTYEtwTPMtwVoTCrfD93igN7rlKeG_0kyCvdU4aYE,58876
|
16
16
|
prefect/flow_runs.py,sha256=dbHcXsOq1UsNM7vyJV9gboCTylmdUwQ_-W4NQt4R4ds,17267
|
17
|
-
prefect/flows.py,sha256=
|
17
|
+
prefect/flows.py,sha256=0Es8TYUUEItxAz6G50eUmlIAXDaUTh4U0dQvgUyW2rk,109529
|
18
18
|
prefect/futures.py,sha256=ZD5rdgUHA4sfxwHaPToumOUKlyn4d989JHR7eI97-Hs,23271
|
19
19
|
prefect/main.py,sha256=8V-qLB4GjEVCkGRgGXeaIk-JIXY8Z9FozcNluj4Sm9E,2589
|
20
20
|
prefect/plugins.py,sha256=FPRLR2mWVBMuOnlzeiTD9krlHONZH2rtYLD753JQDNQ,2516
|
21
21
|
prefect/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
22
|
prefect/results.py,sha256=9mMOOZsj8ueqEch3oqxCaZPhF6D76Sn3P5TkqgVpbg8,36679
|
23
|
-
prefect/schedules.py,sha256=
|
23
|
+
prefect/schedules.py,sha256=dhq4OhImRvcmtxF7UH1m8RbwYdHT5RQsp_FrxVXfODE,7289
|
24
24
|
prefect/serializers.py,sha256=QI0oEal_BO4HQaWSjr6ReSwT55Hn4sbSOXxGgQI1-y0,9249
|
25
25
|
prefect/states.py,sha256=IOfdOJCbgz2G94VCMknX2dheP1bJ6w9rYm62SF2dGQ8,26021
|
26
26
|
prefect/task_engine.py,sha256=IIvDRl2bnnO3aKXTmtWsz0pnV8kL7xjOaUyJTlL6LaM,61491
|
@@ -43,7 +43,7 @@ prefect/_internal/pytz.py,sha256=Sy_cD-Hkmo_Yrhx2Jucy7DgTRhvO8ZD0whW1ywbSg_U,137
|
|
43
43
|
prefect/_internal/retries.py,sha256=pMHofrTQPDSxbVWclDwXbfhFKaDC6sxe1DkUOWugV6k,3040
|
44
44
|
prefect/_internal/compatibility/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
45
45
|
prefect/_internal/compatibility/async_dispatch.py,sha256=cUXOqSeseMUaje9oYUzasVPtNttyiHvrqfJl0zK66XI,2949
|
46
|
-
prefect/_internal/compatibility/deprecated.py,sha256=
|
46
|
+
prefect/_internal/compatibility/deprecated.py,sha256=YUK1IGOgZrDh6dYRez-9IYTB1eqNC19QiSKbBDl88Qs,9305
|
47
47
|
prefect/_internal/compatibility/migration.py,sha256=Z_r28B90ZQkSngXjr4I_9zA6P74_u48mtp2jYWB9zGg,6797
|
48
48
|
prefect/_internal/concurrency/__init__.py,sha256=YlTwU9ryjPNwbJa45adLJY00t_DGCh1QrdtY9WdVFfw,2140
|
49
49
|
prefect/_internal/concurrency/api.py,sha256=9MuQ0icQVTxwxChujn9mnv0WXRqwToysQy9GWC3sJRg,7352
|
@@ -58,7 +58,7 @@ prefect/_internal/concurrency/waiters.py,sha256=mhXpQk8swcUAxBk7f7kGn1fqy44XcFyn
|
|
58
58
|
prefect/_internal/pydantic/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
59
59
|
prefect/_internal/pydantic/schemas.py,sha256=tsRKq5yEIgiRbWMl3BPnbfNaKyDN6pq8WSs0M8SQMm4,452
|
60
60
|
prefect/_internal/pydantic/v1_schema.py,sha256=wSyQr3LUbIh0R9LsZ6ItmLnQeAS8dxVMNpIb-4aPvjM,1175
|
61
|
-
prefect/_internal/pydantic/v2_schema.py,sha256=
|
61
|
+
prefect/_internal/pydantic/v2_schema.py,sha256=n56GUlGSUeNZLpMphHliN5ksryVdE9OQHoVir2hGXoA,3224
|
62
62
|
prefect/_internal/pydantic/v2_validated_func.py,sha256=Ld8OtPFF7Ci-gHHmKhSMizBxzuIBOQ6kuIFNRh0vRVY,3731
|
63
63
|
prefect/_internal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
64
64
|
prefect/_internal/schemas/bases.py,sha256=JqcZazL5Cp2hZ8Hssu8R2SVXRxHfbdRbTqmvwDYSzyk,4291
|
@@ -69,7 +69,7 @@ prefect/_vendor/croniter/__init__.py,sha256=NUFzdbyPcTQhIOFtzmFM0nbClAvBbKh2mlnT
|
|
69
69
|
prefect/_vendor/croniter/croniter.py,sha256=eJ2HzStNAYV-vNiLOgDXl4sYWWHOsSA0dgwbkQoguhY,53009
|
70
70
|
prefect/blocks/__init__.py,sha256=D0hB72qMfgqnBB2EMZRxUxlX9yLfkab5zDChOwJZmkY,220
|
71
71
|
prefect/blocks/abstract.py,sha256=mpOAWopSR_RrzdxeurBTXVSKisP8ne-k8LYos-tp7go,17021
|
72
|
-
prefect/blocks/core.py,sha256=
|
72
|
+
prefect/blocks/core.py,sha256=Z-vC0wP-c1mQUDc-0qgBloLba5OKfJ3hJtDinJyZOH0,62045
|
73
73
|
prefect/blocks/fields.py,sha256=1m507VVmkpOnMF_7N-qboRjtw4_ceIuDneX3jZ3Jm54,63
|
74
74
|
prefect/blocks/notifications.py,sha256=UpNNxc4Bwx0nSlDj-vZQOv2XyUCUB2PaO4uBPO1Y6XM,34162
|
75
75
|
prefect/blocks/redis.py,sha256=lt_f1SIcS5OVvthCY6KRWiy5DyUZNRlHqkKhKF25P8c,5770
|
@@ -112,8 +112,8 @@ prefect/client/orchestration/_work_pools/client.py,sha256=s1DfUQQBgB2sLiVVPhLNTl
|
|
112
112
|
prefect/client/schemas/__init__.py,sha256=InZcDzdeWA2oaV0TlyvoMcyLcbi_aaqU1U9D6Gx-eoU,2747
|
113
113
|
prefect/client/schemas/actions.py,sha256=I8LGTyDBrV4eXI_VSq8nQz5jUuOUAn1A0Q5JsPgCa2A,33032
|
114
114
|
prefect/client/schemas/filters.py,sha256=zaiDkalrIpKjd38V4aP1GHlqD24KTPCZiKtPyX69ZWE,36607
|
115
|
-
prefect/client/schemas/objects.py,sha256=
|
116
|
-
prefect/client/schemas/responses.py,sha256=
|
115
|
+
prefect/client/schemas/objects.py,sha256=qEV2lIdK6JGGhNsAiUDsvtPbjdIZZABqdjnA8cMsnak,58999
|
116
|
+
prefect/client/schemas/responses.py,sha256=9x8gP2O52xEf40EbnSKaKwxS1vIg347t8CqgHGMYCNg,16664
|
117
117
|
prefect/client/schemas/schedules.py,sha256=sxLFk0SmFY7X1Y9R9HyGDqOS3U5NINBWTciUU7vTTic,14836
|
118
118
|
prefect/client/schemas/sorting.py,sha256=L-2Mx-igZPtsUoRUguTcG3nIEstMEMPD97NwPM2Ox5s,2579
|
119
119
|
prefect/client/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -148,7 +148,7 @@ prefect/events/__init__.py,sha256=GtKl2bE--pJduTxelH2xy7SadlLJmmis8WR1EYixhuA,20
|
|
148
148
|
prefect/events/actions.py,sha256=A7jS8bo4zWGnrt3QfSoQs0uYC1xfKXio3IfU0XtTb5s,9129
|
149
149
|
prefect/events/clients.py,sha256=XA33NpeRdgVglt7J47uFdpASa1bCvcKWyxsxQt3vEPQ,27290
|
150
150
|
prefect/events/filters.py,sha256=2hVfzc3Rdgy0mBHDutWxT__LJY0zpVM8greWX3y6kjM,8233
|
151
|
-
prefect/events/related.py,sha256=
|
151
|
+
prefect/events/related.py,sha256=CTeexYUmmA93V4gsR33GIFmw-SS-X_ouOpRg-oeq-BU,6672
|
152
152
|
prefect/events/utilities.py,sha256=ww34bTMENCNwcp6RhhgzG0KgXOvKGe0MKmBdSJ8NpZY,3043
|
153
153
|
prefect/events/worker.py,sha256=HjbibR0_J1W1nnNMZDFTXAbB0cl_cFGaFI87DvNGcnI,4557
|
154
154
|
prefect/events/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -182,7 +182,7 @@ prefect/logging/highlighters.py,sha256=BCf_LNhFInIfGPqwuu8YVrGa4wVxNc4YXo2pYgftp
|
|
182
182
|
prefect/logging/loggers.py,sha256=rwFJv0i3dhdKr25XX-xUkQy4Vv4dy18bTy366jrC0OQ,12741
|
183
183
|
prefect/logging/logging.yml,sha256=tT7gTyC4NmngFSqFkCdHaw7R0GPNPDDsTCGZQByiJAQ,3169
|
184
184
|
prefect/runner/__init__.py,sha256=pQBd9wVrUVUDUFJlgiweKSnbahoBZwqnd2O2jkhrULY,158
|
185
|
-
prefect/runner/runner.py,sha256=
|
185
|
+
prefect/runner/runner.py,sha256=eT0TtLjkxzTTCrJBwpPg7m_QFkCU9VaJY75BFBZKjLY,64895
|
186
186
|
prefect/runner/server.py,sha256=vyqMlUVVq6_Te1feny0G9qE8zJCYREZaF9ZstDuGvJQ,11327
|
187
187
|
prefect/runner/storage.py,sha256=L7aSjie5L6qbXYCDqYDX3ouQ_NsNMlmfjPeaWOC-ncs,28043
|
188
188
|
prefect/runner/submit.py,sha256=MtUrEKi4XznXXkDasILYYhY2w_DC2RcAL2hPJUgkgNo,8815
|
@@ -209,12 +209,12 @@ prefect/server/api/deployments.py,sha256=d-GAbVP3T0RVkkz6VN5nsQN7XU7fTjQg-vzYxuo
|
|
209
209
|
prefect/server/api/events.py,sha256=3-Qdt6ORxFv3nLoogQqvd72zEulJSoAmcqZto2OULuk,9907
|
210
210
|
prefect/server/api/flow_run_notification_policies.py,sha256=F8xNm6bgZTC3nFe9xCUJS4NlU9tLXZ8fShtJqmhT2m4,4828
|
211
211
|
prefect/server/api/flow_run_states.py,sha256=lIdxVE9CqLgtDCuH9bTaKkzHNL81FPrr11liPzvONrw,1661
|
212
|
-
prefect/server/api/flow_runs.py,sha256=
|
212
|
+
prefect/server/api/flow_runs.py,sha256=W_9S7MGrTnUnY5NJdjn13LKdRWeUcyzj8lKx0i1BfH0,33709
|
213
213
|
prefect/server/api/flows.py,sha256=Bz0ISh-9oY0W1X3mqA631_8678pQ6tuRGMpSgWAfxOc,7018
|
214
214
|
prefect/server/api/logs.py,sha256=0z78tM2B5sRgJWYRWJn5lHhRoLtZB_OU3C-uALV8tOs,1571
|
215
215
|
prefect/server/api/middleware.py,sha256=WkyuyeJIfo9Q0GAIVU5gO6yIGNVwoHwuBah5AB5oUyw,2733
|
216
216
|
prefect/server/api/root.py,sha256=CeumFYIM_BDvPicJH9ry5PO_02PZTLeMqbLMGGTh90o,942
|
217
|
-
prefect/server/api/run_history.py,sha256=
|
217
|
+
prefect/server/api/run_history.py,sha256=EW-GTPxZAQ5zXiAqHzmS-iAN_Bn6ZSgVQksDT-ZTsyc,5995
|
218
218
|
prefect/server/api/saved_searches.py,sha256=UjoqLLe245QVIs6q5Vk4vdODCOoYzciEEjhi7B8sYCE,3233
|
219
219
|
prefect/server/api/server.py,sha256=CIpLoiRUCuW345trzwr_Z8v53Kw_2RBqe3ppGvkjSx0,32940
|
220
220
|
prefect/server/api/task_run_states.py,sha256=e63OPpxPudv_CIB5oKr8Z8rfQ-Osjm9Zq0iHe8obnMo,1647
|
@@ -233,7 +233,7 @@ prefect/server/api/ui/flows.py,sha256=W4kwqOCJ_2vROmMCmemH2Mq3uWbWZyu5q5uTZPBdYw
|
|
233
233
|
prefect/server/api/ui/schemas.py,sha256=NVWA1RFnHW-MMU1s6WbNmp_S5mhbrN-_P41I4O2XtMg,2085
|
234
234
|
prefect/server/api/ui/task_runs.py,sha256=dKVNe4EjmMrXH-VtsRoFTKJEBbl35upGHAW2C_AhKKM,6664
|
235
235
|
prefect/settings/__init__.py,sha256=3jDLzExmq9HsRWo1kTSE16BO_3B3JlVsk5pR0s4PWEQ,2136
|
236
|
-
prefect/settings/base.py,sha256=
|
236
|
+
prefect/settings/base.py,sha256=HGukXOXOokfqmrVirgejNskKtf1x2QheZ-ldRakxPJA,9701
|
237
237
|
prefect/settings/constants.py,sha256=5NjVLG1Km9J9I-a6wrq-qmi_dTkPdwEk3IrY9bSxWvw,281
|
238
238
|
prefect/settings/context.py,sha256=yKxnaDJHX8e2jmAVtw1RF9o7X4V3AOcz61sVeQyPX2c,2195
|
239
239
|
prefect/settings/legacy.py,sha256=KG00GwaURl1zbwfCKAjwNRdJjB2UdTyo80gYF7U60jk,5693
|
@@ -251,7 +251,7 @@ prefect/settings/models/flows.py,sha256=kQ_sCA7TUqaEs9wWuGHkGQOuAIEZ5elD4UzeKRe0
|
|
251
251
|
prefect/settings/models/internal.py,sha256=KUb16dg3lH5gwlnUnVJub6JHFXHRyZf1voINBvC_Ysc,718
|
252
252
|
prefect/settings/models/logging.py,sha256=Sj9GDNr5QMFaP6CN0WJyfpwhpOk4p1yhv45dyQMRzHM,4729
|
253
253
|
prefect/settings/models/results.py,sha256=VWFplQSSJyc0LXnziw1H5b3N_PDS32QBe_q2MWwYni0,1484
|
254
|
-
prefect/settings/models/root.py,sha256=
|
254
|
+
prefect/settings/models/root.py,sha256=HpXt_I6T_kJw6QAxez4pCZl8p058etihzJbBNRylN3c,16767
|
255
255
|
prefect/settings/models/runner.py,sha256=rD8OmNLwILmqnGe9YkM1dWKsulx3clYm4LI5N9vD5yM,1991
|
256
256
|
prefect/settings/models/tasks.py,sha256=XA83-EmWv1FKvODSzvI1cvS3tGEbNs2qtdh0AbUdblQ,3640
|
257
257
|
prefect/settings/models/testing.py,sha256=j9YH_WkB14iEzOjUtTmvY978qRSbgCypFSEi_cOs8no,1820
|
@@ -316,7 +316,7 @@ prefect/workers/cloud.py,sha256=dPvG1jDGD5HSH7aM2utwtk6RaJ9qg13XjkA0lAIgQmY,287
|
|
316
316
|
prefect/workers/process.py,sha256=uxOwcqA2Ps-V-W6WeSdKCQMINrCxBEVx1K1Un8pb7vs,8973
|
317
317
|
prefect/workers/server.py,sha256=2pmVeJZiVbEK02SO6BEZaBIvHMsn6G8LzjW8BXyiTtk,1952
|
318
318
|
prefect/workers/utilities.py,sha256=VfPfAlGtTuDj0-Kb8WlMgAuOfgXCdrGAnKMapPSBrwc,2483
|
319
|
-
prefect_client-3.3.2.
|
320
|
-
prefect_client-3.3.2.
|
321
|
-
prefect_client-3.3.2.
|
322
|
-
prefect_client-3.3.2.
|
319
|
+
prefect_client-3.3.2.dev2.dist-info/METADATA,sha256=cARpEVGuMuSP0iE0-J9_UfPSIhf2guyrHfjIMtCY0XY,7456
|
320
|
+
prefect_client-3.3.2.dev2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
321
|
+
prefect_client-3.3.2.dev2.dist-info/licenses/LICENSE,sha256=MCxsn8osAkzfxKC4CC_dLcUkU8DZLkyihZ8mGs3Ah3Q,11357
|
322
|
+
prefect_client-3.3.2.dev2.dist-info/RECORD,,
|
File without changes
|
{prefect_client-3.3.2.dev1.dist-info → prefect_client-3.3.2.dev2.dist-info}/licenses/LICENSE
RENAMED
File without changes
|