zenml-nightly 0.83.1.dev20250626__py3-none-any.whl → 0.83.1.dev20250628__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.
- zenml/VERSION +1 -1
- zenml/client.py +8 -2
- zenml/integrations/aws/flavors/sagemaker_orchestrator_flavor.py +1 -1
- zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator.py +43 -8
- zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator_entrypoint.py +88 -64
- zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator_entrypoint_configuration.py +0 -12
- zenml/integrations/kubernetes/orchestrators/manifest_utils.py +6 -20
- zenml/integrations/kubernetes/step_operators/kubernetes_step_operator.py +4 -2
- zenml/integrations/vllm/services/vllm_deployment.py +1 -1
- zenml/models/v2/core/pipeline_run.py +10 -0
- zenml/orchestrators/dag_runner.py +12 -3
- zenml/orchestrators/input_utils.py +6 -35
- zenml/orchestrators/step_run_utils.py +89 -15
- zenml/pipelines/pipeline_definition.py +6 -2
- zenml/pipelines/run_utils.py +5 -9
- zenml/stack/stack_component.py +1 -1
- zenml/zen_server/template_execution/utils.py +0 -1
- zenml/zen_stores/schemas/pipeline_run_schemas.py +38 -19
- zenml/zen_stores/schemas/step_run_schemas.py +44 -14
- zenml/zen_stores/sql_zen_store.py +75 -49
- {zenml_nightly-0.83.1.dev20250626.dist-info → zenml_nightly-0.83.1.dev20250628.dist-info}/METADATA +1 -1
- {zenml_nightly-0.83.1.dev20250626.dist-info → zenml_nightly-0.83.1.dev20250628.dist-info}/RECORD +25 -25
- {zenml_nightly-0.83.1.dev20250626.dist-info → zenml_nightly-0.83.1.dev20250628.dist-info}/LICENSE +0 -0
- {zenml_nightly-0.83.1.dev20250626.dist-info → zenml_nightly-0.83.1.dev20250628.dist-info}/WHEEL +0 -0
- {zenml_nightly-0.83.1.dev20250626.dist-info → zenml_nightly-0.83.1.dev20250628.dist-info}/entry_points.txt +0 -0
@@ -64,7 +64,7 @@ from sqlalchemy.exc import (
|
|
64
64
|
ArgumentError,
|
65
65
|
IntegrityError,
|
66
66
|
)
|
67
|
-
from sqlalchemy.orm import Mapped,
|
67
|
+
from sqlalchemy.orm import Mapped, noload, selectinload
|
68
68
|
from sqlalchemy.sql.base import ExecutableOption
|
69
69
|
from sqlalchemy.util import immutabledict
|
70
70
|
from sqlmodel import Session as SqlModelSession
|
@@ -3037,18 +3037,17 @@ class SqlZenStore(BaseZenStore):
|
|
3037
3037
|
|
3038
3038
|
if artifact is None:
|
3039
3039
|
try:
|
3040
|
-
|
3041
|
-
|
3042
|
-
|
3043
|
-
|
3044
|
-
|
3045
|
-
|
3046
|
-
|
3047
|
-
|
3048
|
-
|
3049
|
-
|
3050
|
-
|
3051
|
-
session.commit()
|
3040
|
+
artifact_request = ArtifactRequest(
|
3041
|
+
name=name,
|
3042
|
+
project=project_id,
|
3043
|
+
has_custom_name=has_custom_name,
|
3044
|
+
)
|
3045
|
+
self._set_request_user_id(
|
3046
|
+
request_model=artifact_request, session=session
|
3047
|
+
)
|
3048
|
+
artifact = ArtifactSchema.from_request(artifact_request)
|
3049
|
+
session.add(artifact)
|
3050
|
+
session.commit()
|
3052
3051
|
session.refresh(artifact)
|
3053
3052
|
except IntegrityError:
|
3054
3053
|
# We have to rollback the failed session first in order to
|
@@ -3218,6 +3217,7 @@ class SqlZenStore(BaseZenStore):
|
|
3218
3217
|
artifact_version_id=artifact_version_schema.id,
|
3219
3218
|
)
|
3220
3219
|
session.add(vis_schema)
|
3220
|
+
session.commit()
|
3221
3221
|
|
3222
3222
|
# Save tags of the artifact
|
3223
3223
|
self._attach_tags_to_resources(
|
@@ -5332,13 +5332,17 @@ class SqlZenStore(BaseZenStore):
|
|
5332
5332
|
schema_class=PipelineRunSchema,
|
5333
5333
|
session=session,
|
5334
5334
|
query_options=[
|
5335
|
-
|
5336
|
-
|
5337
|
-
|
5338
|
-
|
5339
|
-
|
5340
|
-
|
5341
|
-
|
5335
|
+
selectinload(
|
5336
|
+
jl_arg(PipelineRunSchema.deployment)
|
5337
|
+
).load_only(
|
5338
|
+
jl_arg(PipelineDeploymentSchema.pipeline_configuration)
|
5339
|
+
),
|
5340
|
+
selectinload(
|
5341
|
+
jl_arg(PipelineRunSchema.step_runs)
|
5342
|
+
).selectinload(jl_arg(StepRunSchema.input_artifacts)),
|
5343
|
+
selectinload(
|
5344
|
+
jl_arg(PipelineRunSchema.step_runs)
|
5345
|
+
).selectinload(jl_arg(StepRunSchema.output_artifacts)),
|
5342
5346
|
],
|
5343
5347
|
)
|
5344
5348
|
assert run.deployment is not None
|
@@ -5840,18 +5844,33 @@ class SqlZenStore(BaseZenStore):
|
|
5840
5844
|
# transaction to do so finishes. After the first transaction
|
5841
5845
|
# finishes, the subsequent queries will not be able to find a
|
5842
5846
|
# placeholder run anymore, as we already updated the
|
5843
|
-
#
|
5844
|
-
# Note:
|
5845
|
-
#
|
5846
|
-
#
|
5847
|
-
# multiple rows or even the complete table
|
5848
|
-
# avoid.
|
5847
|
+
# status.
|
5848
|
+
# Note: Due to our unique index on deployment_id and
|
5849
|
+
# orchestrator_run_id, this only locks a single row. If you're
|
5850
|
+
# modifying this WHERE clause, make sure to test/adjust so this
|
5851
|
+
# does not lock multiple rows or even the complete table.
|
5849
5852
|
.with_for_update()
|
5850
5853
|
.where(PipelineRunSchema.deployment_id == pipeline_run.deployment)
|
5851
5854
|
.where(
|
5852
|
-
|
5855
|
+
or_(
|
5856
|
+
PipelineRunSchema.orchestrator_run_id
|
5857
|
+
== pipeline_run.orchestrator_run_id,
|
5858
|
+
col(PipelineRunSchema.orchestrator_run_id).is_(None),
|
5859
|
+
)
|
5853
5860
|
)
|
5854
|
-
.where(
|
5861
|
+
.where(
|
5862
|
+
PipelineRunSchema.status == ExecutionStatus.INITIALIZING.value
|
5863
|
+
)
|
5864
|
+
# In very rare cases, there can be multiple placeholder runs for
|
5865
|
+
# the same deployment. By ordering by the orchestrator_run_id, we
|
5866
|
+
# make sure that we use the placeholder run with the matching
|
5867
|
+
# orchestrator_run_id if it exists, before falling back to the
|
5868
|
+
# placeholder run without any orchestrator_run_id provided.
|
5869
|
+
# Note: This works because both SQLite and MySQL consider NULLs
|
5870
|
+
# to be lower than any other value. If we add support for other
|
5871
|
+
# databases (e.g. PostgreSQL, which considers NULLs to be greater
|
5872
|
+
# than any other value), we need to potentially adjust this.
|
5873
|
+
.order_by(desc(PipelineRunSchema.orchestrator_run_id))
|
5855
5874
|
).first()
|
5856
5875
|
|
5857
5876
|
if not run_schema:
|
@@ -5899,6 +5918,9 @@ class SqlZenStore(BaseZenStore):
|
|
5899
5918
|
.where(
|
5900
5919
|
PipelineRunSchema.orchestrator_run_id == orchestrator_run_id
|
5901
5920
|
)
|
5921
|
+
.where(
|
5922
|
+
PipelineRunSchema.status != ExecutionStatus.INITIALIZING.value
|
5923
|
+
)
|
5902
5924
|
).first()
|
5903
5925
|
|
5904
5926
|
if not run_schema:
|
@@ -5951,27 +5973,31 @@ class SqlZenStore(BaseZenStore):
|
|
5951
5973
|
except KeyError:
|
5952
5974
|
pass
|
5953
5975
|
|
5954
|
-
|
5955
|
-
|
5956
|
-
|
5957
|
-
|
5958
|
-
|
5959
|
-
|
5960
|
-
|
5961
|
-
|
5962
|
-
|
5963
|
-
|
5964
|
-
|
5965
|
-
|
5966
|
-
|
5967
|
-
|
5968
|
-
|
5969
|
-
|
5970
|
-
|
5971
|
-
|
5972
|
-
|
5973
|
-
|
5974
|
-
|
5976
|
+
if not pipeline_run.is_placeholder_request:
|
5977
|
+
# Only run this if the request is not a placeholder run itself,
|
5978
|
+
# as we don't want to replace a placeholder run with another
|
5979
|
+
# placeholder run.
|
5980
|
+
try:
|
5981
|
+
return (
|
5982
|
+
self._replace_placeholder_run(
|
5983
|
+
pipeline_run=pipeline_run,
|
5984
|
+
pre_replacement_hook=pre_creation_hook,
|
5985
|
+
session=session,
|
5986
|
+
),
|
5987
|
+
True,
|
5988
|
+
)
|
5989
|
+
except KeyError:
|
5990
|
+
# We were not able to find/replace a placeholder run. This could
|
5991
|
+
# be due to one of the following three reasons:
|
5992
|
+
# (1) There never was a placeholder run for the deployment. This
|
5993
|
+
# is the case if the user ran the pipeline on a schedule.
|
5994
|
+
# (2) There was a placeholder run, but a previous pipeline run
|
5995
|
+
# already used it. This is the case if users rerun a
|
5996
|
+
# pipeline run e.g. from the orchestrator UI, as they will
|
5997
|
+
# use the same deployment_id with a new orchestrator_run_id.
|
5998
|
+
# (3) A step of the same pipeline run already replaced the
|
5999
|
+
# placeholder run.
|
6000
|
+
pass
|
5975
6001
|
|
5976
6002
|
try:
|
5977
6003
|
# We now try to create a new run. The following will happen in
|
{zenml_nightly-0.83.1.dev20250626.dist-info → zenml_nightly-0.83.1.dev20250628.dist-info}/RECORD
RENAMED
@@ -1,5 +1,5 @@
|
|
1
1
|
zenml/README.md,sha256=827dekbOWAs1BpW7VF1a4d7EbwPbjwccX-2zdXBENZo,1777
|
2
|
-
zenml/VERSION,sha256=
|
2
|
+
zenml/VERSION,sha256=x5dBMBD6SExu8DR6dvH97yI7GYYyLeKD8pBqRadIu00,19
|
3
3
|
zenml/__init__.py,sha256=r7JUg2SVDf_dPhS7iU6vudKusEqK4ics7_jFMZhq0o4,2731
|
4
4
|
zenml/actions/__init__.py,sha256=mrt6wPo73iKRxK754_NqsGyJ3buW7RnVeIGXr1xEw8Y,681
|
5
5
|
zenml/actions/base_action.py,sha256=UcaHev6BTuLDwuswnyaPjdA8AgUqB5xPZ-lRtuvf2FU,25553
|
@@ -55,7 +55,7 @@ zenml/cli/text_utils.py,sha256=bY1GIjoULt1cW2FyrPlMoAXNS2R7cSOjDFEZQqrpVQ8,3553
|
|
55
55
|
zenml/cli/user_management.py,sha256=sNnhaUxH-cHecbZBR1L0mEU0TnLNZHzI6ZBCUSQa7OY,13078
|
56
56
|
zenml/cli/utils.py,sha256=6Ld_CK4k5B-Kn8ilGFiV-J4Xl8JEX36PZrNFIT5slLo,85310
|
57
57
|
zenml/cli/version.py,sha256=nm1iSU_1V6-MUwpMKeXcwFhLYGUMLswvQL67cEuCpxA,3635
|
58
|
-
zenml/client.py,sha256=
|
58
|
+
zenml/client.py,sha256=fLYjWtQEqvJqB-IV-WQ-54bKNRSRtlU4XljMxydvN1c,293403
|
59
59
|
zenml/client_lazy_loader.py,sha256=oyxKvBWVB7k2pHMavdhNEOfR2Vk4IS3XUu43SBzDPsI,7152
|
60
60
|
zenml/code_repositories/__init__.py,sha256=W5bDfzAG8OXIKZSV1L-VHuzMcSCYa9qzTdPb3jqfyYw,920
|
61
61
|
zenml/code_repositories/base_code_repository.py,sha256=Id6VjbUu8N3ZpNvBGhOgbahtoMiCAtYXed3G7YQ_iAc,5225
|
@@ -141,7 +141,7 @@ zenml/integrations/aws/container_registries/aws_container_registry.py,sha256=ENJ
|
|
141
141
|
zenml/integrations/aws/flavors/__init__.py,sha256=XYL9fpwKzeFfHCjakU0iJ3SyHVRJk63QT7luOy9Giek,1480
|
142
142
|
zenml/integrations/aws/flavors/aws_container_registry_flavor.py,sha256=GIDLOySz1zF08YSkmKIj89TxBqSLWueXLAHyxYwm-NI,4169
|
143
143
|
zenml/integrations/aws/flavors/aws_image_builder_flavor.py,sha256=XobJOw5ymbY22i7YHWGYOKDQoJQAqTeMIfvkADt-DDc,5343
|
144
|
-
zenml/integrations/aws/flavors/sagemaker_orchestrator_flavor.py,sha256=
|
144
|
+
zenml/integrations/aws/flavors/sagemaker_orchestrator_flavor.py,sha256=jHgTv_H_Y-GaxJWgyor0_z9bCKCMnT2PGxkV2qgINf0,13623
|
145
145
|
zenml/integrations/aws/flavors/sagemaker_step_operator_flavor.py,sha256=e3locb2OnF7bqV3iafIUB_tHhDE8-i7eyB4H6Hyqj1Y,6084
|
146
146
|
zenml/integrations/aws/image_builders/__init__.py,sha256=91hgH1OphG2i-vk-G8N4yKBFIzK89Wu7BK4-T5yOA7E,786
|
147
147
|
zenml/integrations/aws/image_builders/aws_image_builder.py,sha256=UcPYYYjJjfsicY3hV4OZeJt552AVmwPZPlv-AsG1g1I,11489
|
@@ -338,16 +338,16 @@ zenml/integrations/kubernetes/flavors/kubernetes_orchestrator_flavor.py,sha256=8
|
|
338
338
|
zenml/integrations/kubernetes/flavors/kubernetes_step_operator_flavor.py,sha256=xFO7cSusji-mgbRrt4mU29gdyC9iEjEHKtomdFLp9mM,6265
|
339
339
|
zenml/integrations/kubernetes/orchestrators/__init__.py,sha256=TJID3OTieZBox36WpQpzD0jdVRA_aZVcs_bNtfXS8ik,811
|
340
340
|
zenml/integrations/kubernetes/orchestrators/kube_utils.py,sha256=N66GH5ac22Xm_A3nr162kbFBhMeypSFaQjOQRHlGXIQ,18942
|
341
|
-
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator.py,sha256=
|
342
|
-
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator_entrypoint.py,sha256=
|
343
|
-
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator_entrypoint_configuration.py,sha256=
|
344
|
-
zenml/integrations/kubernetes/orchestrators/manifest_utils.py,sha256=
|
341
|
+
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator.py,sha256=iuUllVHlXTvTftGk0Gs3EIITG0XXKwCT68UOfLHoJMs,27603
|
342
|
+
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator_entrypoint.py,sha256=LTqbww_bQFnRS18VAPrxB356UoX8YJI6nlDR74tzqoo,13572
|
343
|
+
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator_entrypoint_configuration.py,sha256=QOwQnWCfB-t_BQ2eOZN0SakurGUd0GTMCSdUlREhk6I,2324
|
344
|
+
zenml/integrations/kubernetes/orchestrators/manifest_utils.py,sha256=8_OU6cQxLRzkd1r40YNRoAnz5qHSFQOvVxHUhh88T04,13670
|
345
345
|
zenml/integrations/kubernetes/pod_settings.py,sha256=QPV8Fq8SHZ7pwKavplcADJep-Y9olIbC3RlG10HI0pw,6683
|
346
346
|
zenml/integrations/kubernetes/serialization_utils.py,sha256=cPSe4szdBLzDnUZT9nQc2CCA8h84aj5oTA8vsUE36ig,7000
|
347
347
|
zenml/integrations/kubernetes/service_connectors/__init__.py,sha256=Uf6zlHIapYrRDl3xOPWQ2jA7jt85SXx1U7DmSxzxTvQ,818
|
348
348
|
zenml/integrations/kubernetes/service_connectors/kubernetes_service_connector.py,sha256=Cv4tiVxoQOz9ex0lf3JdJrooEkgMwfDfwt5GOeNRpQU,19669
|
349
349
|
zenml/integrations/kubernetes/step_operators/__init__.py,sha256=40utDPYAezxHsFgO0UUIT_6XpCDzDapje6OH951XsTs,806
|
350
|
-
zenml/integrations/kubernetes/step_operators/kubernetes_step_operator.py,sha256=
|
350
|
+
zenml/integrations/kubernetes/step_operators/kubernetes_step_operator.py,sha256=lpkrA_barndyNLKqEUTaOIYJ6V8kHX9SfK5XFKK1md4,8848
|
351
351
|
zenml/integrations/label_studio/__init__.py,sha256=sF2c9FxTDRlbcu95OxaUNKNtIhC1LgfmBRKY4jBME38,1475
|
352
352
|
zenml/integrations/label_studio/annotators/__init__.py,sha256=YtOtSfS1_NBoLoXIygEerElBP1-B98UU0HOAEfzdRY0,821
|
353
353
|
zenml/integrations/label_studio/annotators/label_studio_annotator.py,sha256=VkuW4zsZhHz8__P9WTTLRTF-FOmoYB-_cFqBdu-PUyA,30498
|
@@ -549,7 +549,7 @@ zenml/integrations/vllm/flavors/vllm_model_deployer_flavor.py,sha256=_3P0-qyjdsV
|
|
549
549
|
zenml/integrations/vllm/model_deployers/__init__.py,sha256=Z38oWIfkArNsxCm3rQkTdYK4dbtx2BpTUw1gw_kl6Do,803
|
550
550
|
zenml/integrations/vllm/model_deployers/vllm_model_deployer.py,sha256=OYPNSkB-I5r4eQ_7kr4F7GDwNj6efcsio8WRteQ5cYI,9665
|
551
551
|
zenml/integrations/vllm/services/__init__.py,sha256=Id28GEfHECI0RnGAGGNioD9eZ6aJxdNebe112VgC59g,788
|
552
|
-
zenml/integrations/vllm/services/vllm_deployment.py,sha256=
|
552
|
+
zenml/integrations/vllm/services/vllm_deployment.py,sha256=wRFo8ebN6BEBLs1ZdEdNsFXSk38MJatKEyu_euJJbLc,7107
|
553
553
|
zenml/integrations/wandb/__init__.py,sha256=5aTIc27MeYzODDGeJHZmtRhTSNkg7Vt2tHgrtGTCD_c,1705
|
554
554
|
zenml/integrations/wandb/experiment_trackers/__init__.py,sha256=8nFyyvh-PTF5d9ZfjS7xFSWTWSpreRB1azePv-Ex2sc,771
|
555
555
|
zenml/integrations/wandb/experiment_trackers/wandb_experiment_tracker.py,sha256=GV5zDPgj6Dh3ho2MMUC1Da1ezPrNtr4RE9tisWGde00,5749
|
@@ -649,7 +649,7 @@ zenml/models/v2/core/model_version_pipeline_run.py,sha256=JbPZZEQvOK9I32htkWdAON
|
|
649
649
|
zenml/models/v2/core/pipeline.py,sha256=OXArih3YodMAZBS_GzuLL6VPpFv3c59EthwDfDZiNGk,12044
|
650
650
|
zenml/models/v2/core/pipeline_build.py,sha256=z0LCc8aR8AdNFLLtzaAP0U0ffv7WpmSx9nNAyI__e14,17008
|
651
651
|
zenml/models/v2/core/pipeline_deployment.py,sha256=nrJHrweNlwFsIdExINMF7jwhjOwBpOd8iwtEyAnvlz4,11971
|
652
|
-
zenml/models/v2/core/pipeline_run.py,sha256=
|
652
|
+
zenml/models/v2/core/pipeline_run.py,sha256=hWnM6Tf72uE9nxuSV6xacCMogOozuExvdtILgO6il98,32522
|
653
653
|
zenml/models/v2/core/project.py,sha256=fNNO8Tg5OhSzmFf2t6g4SpUzGWC96oHhUccVyWytvIE,5627
|
654
654
|
zenml/models/v2/core/run_metadata.py,sha256=hRGQa_sk99uDSab3EyyOQhefypVpiQDCH3oAtblREDk,2432
|
655
655
|
zenml/models/v2/core/run_template.py,sha256=6jdH1son7kpvFv-vtaOL2nXMATtVpqk_7a2xOVv_7cc,14097
|
@@ -685,8 +685,8 @@ zenml/orchestrators/__init__.py,sha256=Nhmc6U-q6c8TEH1Jb5l8XaKnc4KmLNspDpvvV5Tcv
|
|
685
685
|
zenml/orchestrators/base_orchestrator.py,sha256=1L2oJTNpVWUu5ndqyQPdcf2S5ebM7r2IHHrFatV6kPQ,14612
|
686
686
|
zenml/orchestrators/cache_utils.py,sha256=QkmTs-ANfXve9_QzTqgGlyulZDEWOngoTcsiSjG5aA8,5906
|
687
687
|
zenml/orchestrators/containerized_orchestrator.py,sha256=rdebgBW0Bk--JcHcT0NpLkAbyhY0VS5xO1uwWEgkLpA,3230
|
688
|
-
zenml/orchestrators/dag_runner.py,sha256=
|
689
|
-
zenml/orchestrators/input_utils.py,sha256=
|
688
|
+
zenml/orchestrators/dag_runner.py,sha256=Ol5P24i8Oa0mmZeNZnUdd_HrQDawx8kP1epWa-b6f3g,9801
|
689
|
+
zenml/orchestrators/input_utils.py,sha256=IwDYEwhFVcvZcdi9Myg__UB1bkZfpa8xZ0XRSwc4-go,6934
|
690
690
|
zenml/orchestrators/local/__init__.py,sha256=qlU91hgqGKeycw-Qntrn-iMuoMTaNrq-RgfOFeqwlM4,662
|
691
691
|
zenml/orchestrators/local/local_orchestrator.py,sha256=KCzc901_wrb1DPTDu_IY6HFxTghe2oiLYPAdxEpj7K4,6033
|
692
692
|
zenml/orchestrators/local_docker/__init__.py,sha256=k8J68ydy6HmmvE9tWo32g761H8P_Dw4AxWNf4UMpsbs,669
|
@@ -694,7 +694,7 @@ zenml/orchestrators/local_docker/local_docker_orchestrator.py,sha256=RA88Yq8K9-z
|
|
694
694
|
zenml/orchestrators/output_utils.py,sha256=01vqke1ZfmfuLpgxNerF-QL2wA0VPv1zUdvlMw0OwUY,3508
|
695
695
|
zenml/orchestrators/publish_utils.py,sha256=CSQKhx2f9r2knldDCuPR0lmVyRwI-Ps6Xbihfhxv21U,5477
|
696
696
|
zenml/orchestrators/step_launcher.py,sha256=6hrLj0Dr5-FcKTm3cvLVnr3PuUpaYbyEs1MRQdAVzys,18064
|
697
|
-
zenml/orchestrators/step_run_utils.py,sha256=
|
697
|
+
zenml/orchestrators/step_run_utils.py,sha256=SZjVSkmO9Vvjb2ZqQembOjg3jTU2wHXAykwlVxQNVBg,17051
|
698
698
|
zenml/orchestrators/step_runner.py,sha256=EUgKG_g0fOQ6gnB1hPSSa6UXwUKVkguC-Yj-Q0yEQXg,26632
|
699
699
|
zenml/orchestrators/topsort.py,sha256=D8evz3X47zwpXd90NMLsJD-_uCeXtV6ClzNfDUrq7cM,5784
|
700
700
|
zenml/orchestrators/utils.py,sha256=6bqLc1fmdJTXg8JUwUKs8YNbmxTuMIfWmUbUpg-7hx0,12956
|
@@ -703,8 +703,8 @@ zenml/pipelines/__init__.py,sha256=hpIX7hN8jsQRHT5R-xSXZL88qrHwkmrvGLQeu1rWt4o,8
|
|
703
703
|
zenml/pipelines/build_utils.py,sha256=DltGesybT8qYum4i23mvWZlVRgp7UxWdbHd1Y9ySv5c,27889
|
704
704
|
zenml/pipelines/pipeline_context.py,sha256=4BixReLcPo33VtNBDrMwnJqjKTinHjmO5AOfmoeIOQM,3659
|
705
705
|
zenml/pipelines/pipeline_decorator.py,sha256=LB21QYrbFeBdUGwKBUNbdpXAxO4OOtYl5Vs_mzJNXqU,4600
|
706
|
-
zenml/pipelines/pipeline_definition.py,sha256=
|
707
|
-
zenml/pipelines/run_utils.py,sha256
|
706
|
+
zenml/pipelines/pipeline_definition.py,sha256=cQUeUcv6l9quw8xkYFA4YFNZcG_AzLHJArUXnxkFXUI,59759
|
707
|
+
zenml/pipelines/run_utils.py,sha256=VAjfdu300AKfTuwXll3uoFrwN5dt_hesXxtylndUraQ,12515
|
708
708
|
zenml/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
709
709
|
zenml/plugins/base_plugin_flavor.py,sha256=88IxFW91UB_rQ8xPlfRnIhIJh7A308NEq2epMMdlOng,2530
|
710
710
|
zenml/plugins/plugin_flavor_registry.py,sha256=LsN2Q0K-7EQ9H4uvlEG62Y0C1_Ro1UwppX4cnGbEcOA,10862
|
@@ -739,7 +739,7 @@ zenml/stack/authentication_mixin.py,sha256=_Rn6SurHnyBuU_CJBOkwPR305yQFfqN60t6nE
|
|
739
739
|
zenml/stack/flavor.py,sha256=wFLjajCw_G2NMR2UJzEGH2dcLj1dvmU9dDI5iS8b9rk,10544
|
740
740
|
zenml/stack/flavor_registry.py,sha256=IL0fRrxxQJ9YkCYCeADP7nwWEQo4XBElJY4owMjKGbQ,6108
|
741
741
|
zenml/stack/stack.py,sha256=3mLGNBuep0PeBcoFfOEaB6Ya206yav1ppiH5YEjp9xA,33042
|
742
|
-
zenml/stack/stack_component.py,sha256=
|
742
|
+
zenml/stack/stack_component.py,sha256=aXCVf4txBW-jprUb8XRJ2r6D-OUrWg3QHkTtlIiIcd8,29255
|
743
743
|
zenml/stack/stack_validator.py,sha256=hWbvvGIeWLj6NwSsF4GCc6RAxAWvxHXTcBZL9nJvcak,3111
|
744
744
|
zenml/stack/utils.py,sha256=CHs9rxdqHkUT12KPhJX1YPtIWnZBoVlRlq5PzNymq3E,6406
|
745
745
|
zenml/stack_deployments/__init__.py,sha256=-7593cQ_ZgRn774Ol-8AKXXQquIU4DSiaThVEr6TfWM,644
|
@@ -1075,7 +1075,7 @@ zenml/zen_server/routers/webhook_endpoints.py,sha256=4Ca6k_qyE5lZpflEqV0P4mcuXnh
|
|
1075
1075
|
zenml/zen_server/secure_headers.py,sha256=glh6QujnjyeoH1_FK-tAS-105G-qKS_34AqSzqJ6TRc,4182
|
1076
1076
|
zenml/zen_server/template_execution/__init__.py,sha256=79knXLKfegsvVSVSWecpqrepq6iAavTUA4hKuiDk-WE,613
|
1077
1077
|
zenml/zen_server/template_execution/runner_entrypoint_configuration.py,sha256=Y8aYJhqqs8Kv8I1q-dM1WemS5VBIfyoaaYH_YkzC7iY,1541
|
1078
|
-
zenml/zen_server/template_execution/utils.py,sha256=
|
1078
|
+
zenml/zen_server/template_execution/utils.py,sha256=xaxG2gAaWDSFHH-R0-P_YxwVPnrZzw8imL0VM0I_LTA,19386
|
1079
1079
|
zenml/zen_server/template_execution/workload_manager_interface.py,sha256=CL9c7z8ajuZE01DaHmdCDCZmsroDcTarvN-nE8jv6qQ,2590
|
1080
1080
|
zenml/zen_server/utils.py,sha256=BKwaSRRWpYUaItCH4xwXOfG3JmsuFuf6Oi1B6dms0ps,24657
|
1081
1081
|
zenml/zen_server/zen_server_api.py,sha256=bXriGA06xKe_Pz-Adw-dzJX9yWpQbS5Hqxbmg_7FQSA,11603
|
@@ -1308,7 +1308,7 @@ zenml/zen_stores/schemas/logs_schemas.py,sha256=qv6fs3JiVgzlmTXJqb_gG5NsU5q_50e0
|
|
1308
1308
|
zenml/zen_stores/schemas/model_schemas.py,sha256=cDhWggrn3rTjaFML3iQGuW_4CpUJUxAnHieiY-dq0y4,26006
|
1309
1309
|
zenml/zen_stores/schemas/pipeline_build_schemas.py,sha256=8GMdJNNcoSnbYH9daVr8zrhwQ1n-HZrpgzHoBZ7DZyA,7320
|
1310
1310
|
zenml/zen_stores/schemas/pipeline_deployment_schemas.py,sha256=wCZVo8khyMOPMcO9e1itAb_3ehWFObCpgl6Pp2Yz88k,14780
|
1311
|
-
zenml/zen_stores/schemas/pipeline_run_schemas.py,sha256=
|
1311
|
+
zenml/zen_stores/schemas/pipeline_run_schemas.py,sha256=nL4E5LMbB2jl_wOG6EbJp2XkaJNL_p4HkAVjoZNpmsU,21974
|
1312
1312
|
zenml/zen_stores/schemas/pipeline_schemas.py,sha256=xgioTeBuFFFDOJi5eESx2j-8mW55B6hshosFylev5Mw,8213
|
1313
1313
|
zenml/zen_stores/schemas/project_schemas.py,sha256=X2GClPNQz0COsEZX8xI-I8Sm68Hb6f20Obm24mQyLS0,6013
|
1314
1314
|
zenml/zen_stores/schemas/run_metadata_schemas.py,sha256=G94rT4ldluMSnf9rm7R_9rw_GlgaAyq72ptkHl0gHeg,3605
|
@@ -1320,7 +1320,7 @@ zenml/zen_stores/schemas/server_settings_schemas.py,sha256=usBE-idRrmK-LeLN0zDtC
|
|
1320
1320
|
zenml/zen_stores/schemas/service_connector_schemas.py,sha256=SpzFZTbfxypFtMLBujPSlGOpt-kzjcHfq3IoBghPizI,11137
|
1321
1321
|
zenml/zen_stores/schemas/service_schemas.py,sha256=Fn_DyGm-PF-qN1TPZA3Q8AhrnUOTSIX0V_MD0laZ2Bk,10685
|
1322
1322
|
zenml/zen_stores/schemas/stack_schemas.py,sha256=DOPoNwblTqN83RpnD6cjyF80VeplA1BGUX8yuulpzKk,6829
|
1323
|
-
zenml/zen_stores/schemas/step_run_schemas.py,sha256=
|
1323
|
+
zenml/zen_stores/schemas/step_run_schemas.py,sha256=sYy_BQ0NlkpYXJC3tIFdprY4XERFc9DulDNhGwDdwlY,19419
|
1324
1324
|
zenml/zen_stores/schemas/tag_schemas.py,sha256=pwQ5ogZovtkUuRtAkHakOfMh6ixw6qofvxB4i_Gd4qA,8352
|
1325
1325
|
zenml/zen_stores/schemas/trigger_schemas.py,sha256=LokauFEHdN5UuYeC2kf5PtJ60WMz-E82Ngcwxcv6tDA,11936
|
1326
1326
|
zenml/zen_stores/schemas/user_schemas.py,sha256=wLSHtfjjrYBWnX_PXv5KPz_DRdheTxZVjcgBe-cP__c,11497
|
@@ -1334,11 +1334,11 @@ zenml/zen_stores/secrets_stores/hashicorp_secrets_store.py,sha256=5err1a-TrV3SR5
|
|
1334
1334
|
zenml/zen_stores/secrets_stores/secrets_store_interface.py,sha256=Q2Jbnt2Pp7NGlR-u1YBfRZV2g8su2Fd0ArBMdksAE-Q,2819
|
1335
1335
|
zenml/zen_stores/secrets_stores/service_connector_secrets_store.py,sha256=DrXGMkBxQIy2n_kkux5Xh2OM3Ks3MOpqP1D4aY8bfyY,7047
|
1336
1336
|
zenml/zen_stores/secrets_stores/sql_secrets_store.py,sha256=LPFW757WCJLP1S8vrvjsrl2Tf1yo281xUTjSBsos4qk,8788
|
1337
|
-
zenml/zen_stores/sql_zen_store.py,sha256=
|
1337
|
+
zenml/zen_stores/sql_zen_store.py,sha256=vir5WfbwPyZz7bIuxRzT5WHG_qkL5ijhWpSw4nGBfIU,481114
|
1338
1338
|
zenml/zen_stores/template_utils.py,sha256=GbJ7LgGVYHSCKPEA8RNTxPoVTWqpC77F_lGzjJ4O1Fw,9220
|
1339
1339
|
zenml/zen_stores/zen_store_interface.py,sha256=weiSULdI9AsbCE10a5TcwtybX-BJs9hKhjPJnTapWv4,93023
|
1340
|
-
zenml_nightly-0.83.1.
|
1341
|
-
zenml_nightly-0.83.1.
|
1342
|
-
zenml_nightly-0.83.1.
|
1343
|
-
zenml_nightly-0.83.1.
|
1344
|
-
zenml_nightly-0.83.1.
|
1340
|
+
zenml_nightly-0.83.1.dev20250628.dist-info/LICENSE,sha256=wbnfEnXnafPbqwANHkV6LUsPKOtdpsd-SNw37rogLtc,11359
|
1341
|
+
zenml_nightly-0.83.1.dev20250628.dist-info/METADATA,sha256=eKK8-lKVvhMh_Sr63zGnmGUHpnH70mxMMx8-AxQDMbc,24316
|
1342
|
+
zenml_nightly-0.83.1.dev20250628.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
1343
|
+
zenml_nightly-0.83.1.dev20250628.dist-info/entry_points.txt,sha256=QK3ETQE0YswAM2mWypNMOv8TLtr7EjnqAFq1br_jEFE,43
|
1344
|
+
zenml_nightly-0.83.1.dev20250628.dist-info/RECORD,,
|
{zenml_nightly-0.83.1.dev20250626.dist-info → zenml_nightly-0.83.1.dev20250628.dist-info}/LICENSE
RENAMED
File without changes
|
{zenml_nightly-0.83.1.dev20250626.dist-info → zenml_nightly-0.83.1.dev20250628.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|