zenml-nightly 0.57.1.dev20240522__py3-none-any.whl → 0.57.1.dev20240527__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/cli/base.py +15 -16
- zenml/client.py +11 -1
- zenml/config/__init__.py +2 -0
- zenml/config/pipeline_configurations.py +2 -0
- zenml/config/pipeline_run_configuration.py +2 -0
- zenml/config/retry_config.py +27 -0
- zenml/config/server_config.py +13 -9
- zenml/config/step_configurations.py +2 -0
- zenml/constants.py +1 -0
- zenml/integrations/kubernetes/flavors/kubernetes_orchestrator_flavor.py +2 -0
- zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator.py +14 -0
- zenml/integrations/kubernetes/orchestrators/manifest_utils.py +4 -0
- zenml/integrations/slack/alerters/slack_alerter.py +0 -2
- zenml/model/model.py +77 -45
- zenml/models/v2/core/model_version.py +1 -1
- zenml/models/v2/core/pipeline_run.py +12 -0
- zenml/models/v2/core/step_run.py +12 -0
- zenml/models/v2/misc/server_models.py +9 -3
- zenml/new/pipelines/run_utils.py +8 -2
- zenml/new/steps/step_decorator.py +5 -0
- zenml/orchestrators/step_launcher.py +71 -53
- zenml/orchestrators/step_runner.py +26 -132
- zenml/orchestrators/utils.py +158 -1
- zenml/steps/base_step.py +7 -0
- zenml/utils/dashboard_utils.py +4 -8
- zenml/zen_server/deploy/helm/templates/_environment.tpl +5 -5
- zenml/zen_server/deploy/helm/values.yaml +13 -9
- zenml/zen_server/pipeline_deployment/utils.py +6 -2
- zenml/zen_server/routers/auth_endpoints.py +4 -4
- zenml/zen_server/zen_server_api.py +1 -1
- zenml/zen_stores/base_zen_store.py +2 -2
- zenml/zen_stores/schemas/pipeline_run_schemas.py +12 -0
- zenml/zen_stores/schemas/step_run_schemas.py +14 -0
- zenml/zen_stores/sql_zen_store.py +4 -2
- {zenml_nightly-0.57.1.dev20240522.dist-info → zenml_nightly-0.57.1.dev20240527.dist-info}/METADATA +3 -3
- {zenml_nightly-0.57.1.dev20240522.dist-info → zenml_nightly-0.57.1.dev20240527.dist-info}/RECORD +40 -39
- {zenml_nightly-0.57.1.dev20240522.dist-info → zenml_nightly-0.57.1.dev20240527.dist-info}/LICENSE +0 -0
- {zenml_nightly-0.57.1.dev20240522.dist-info → zenml_nightly-0.57.1.dev20240527.dist-info}/WHEEL +0 -0
- {zenml_nightly-0.57.1.dev20240522.dist-info → zenml_nightly-0.57.1.dev20240527.dist-info}/entry_points.txt +0 -0
zenml/steps/base_step.py
CHANGED
@@ -37,6 +37,7 @@ from typing import (
|
|
37
37
|
from pydantic import BaseModel, Extra, ValidationError
|
38
38
|
|
39
39
|
from zenml.client_lazy_loader import ClientLazyLoader
|
40
|
+
from zenml.config.retry_config import StepRetryConfig
|
40
41
|
from zenml.config.source import Source
|
41
42
|
from zenml.constants import STEP_SOURCE_PARAMETER_NAME
|
42
43
|
from zenml.exceptions import MissingStepParameterError, StepInterfaceError
|
@@ -140,6 +141,7 @@ class BaseStep(metaclass=BaseStepMeta):
|
|
140
141
|
on_failure: Optional["HookSpecification"] = None,
|
141
142
|
on_success: Optional["HookSpecification"] = None,
|
142
143
|
model: Optional["Model"] = None,
|
144
|
+
retry: Optional[StepRetryConfig] = None,
|
143
145
|
**kwargs: Any,
|
144
146
|
) -> None:
|
145
147
|
"""Initializes a step.
|
@@ -169,6 +171,7 @@ class BaseStep(metaclass=BaseStepMeta):
|
|
169
171
|
be a function with no arguments, or a source path to such a
|
170
172
|
function (e.g. `module.my_function`).
|
171
173
|
model: configuration of the model version in the Model Control Plane.
|
174
|
+
retry: Configuration for retrying the step in case of failure.
|
172
175
|
**kwargs: Keyword arguments passed to the step.
|
173
176
|
"""
|
174
177
|
from zenml.config.step_configurations import PartialStepConfiguration
|
@@ -242,6 +245,7 @@ class BaseStep(metaclass=BaseStepMeta):
|
|
242
245
|
on_failure=on_failure,
|
243
246
|
on_success=on_success,
|
244
247
|
model=model,
|
248
|
+
retry=retry,
|
245
249
|
)
|
246
250
|
self._verify_and_apply_init_params(*args, **kwargs)
|
247
251
|
|
@@ -696,6 +700,7 @@ class BaseStep(metaclass=BaseStepMeta):
|
|
696
700
|
on_success: Optional["HookSpecification"] = None,
|
697
701
|
model: Optional["Model"] = None,
|
698
702
|
merge: bool = True,
|
703
|
+
retry: Optional[StepRetryConfig] = None,
|
699
704
|
) -> T:
|
700
705
|
"""Configures the step.
|
701
706
|
|
@@ -738,6 +743,7 @@ class BaseStep(metaclass=BaseStepMeta):
|
|
738
743
|
configurations. If `False` the given configurations will
|
739
744
|
overwrite all existing ones. See the general description of this
|
740
745
|
method for an example.
|
746
|
+
retry: Configuration for retrying the step in case of failure.
|
741
747
|
|
742
748
|
Returns:
|
743
749
|
The step instance that this method was called on.
|
@@ -807,6 +813,7 @@ class BaseStep(metaclass=BaseStepMeta):
|
|
807
813
|
"failure_hook_source": failure_hook_source,
|
808
814
|
"success_hook_source": success_hook_source,
|
809
815
|
"model": model,
|
816
|
+
"retry": retry,
|
810
817
|
}
|
811
818
|
)
|
812
819
|
config = StepConfigurationUpdate(**values)
|
zenml/utils/dashboard_utils.py
CHANGED
@@ -42,8 +42,7 @@ def is_cloud_server(server_info: ServerModel) -> bool:
|
|
42
42
|
"""
|
43
43
|
return (
|
44
44
|
"organization_id" in server_info.metadata
|
45
|
-
and
|
46
|
-
and "cloud.zenml.io" in server_info.base_url
|
45
|
+
and "cloud.zenml.io" in server_info.server_url
|
47
46
|
)
|
48
47
|
|
49
48
|
|
@@ -59,7 +58,7 @@ def get_cloud_dashboard_url() -> Optional[str]:
|
|
59
58
|
server_info = client.zen_store.get_store_info()
|
60
59
|
|
61
60
|
if is_cloud_server(server_info):
|
62
|
-
return server_info.
|
61
|
+
return server_info.dashboard_url
|
63
62
|
|
64
63
|
return None
|
65
64
|
|
@@ -80,11 +79,8 @@ def get_server_dashboard_url() -> Tuple[Optional[str], bool]:
|
|
80
79
|
else:
|
81
80
|
suffix = ""
|
82
81
|
|
83
|
-
if server_info.
|
84
|
-
|
85
|
-
# function we want the URL of the dashboard provided by the server
|
86
|
-
# deployment, which for cloud is just the ZenStore URL
|
87
|
-
url = server_info.base_url
|
82
|
+
if server_info.server_url:
|
83
|
+
url = server_info.server_url
|
88
84
|
else:
|
89
85
|
url = client.zen_store.url
|
90
86
|
|
@@ -58,9 +58,6 @@ device_auth_timeout: {{ .ZenML.auth.deviceAuthTimeout | quote }}
|
|
58
58
|
{{- if .ZenML.auth.deviceAuthPollingInterval }}
|
59
59
|
device_auth_polling_interval: {{ .ZenML.auth.deviceAuthPollingInterval | quote }}
|
60
60
|
{{- end }}
|
61
|
-
{{- if .ZenML.auth.dashboardURL }}
|
62
|
-
dashboard_url: {{ .ZenML.auth.dashboardURL | quote }}
|
63
|
-
{{- end }}
|
64
61
|
{{- if .ZenML.auth.deviceExpirationMinutes }}
|
65
62
|
device_expiration_minutes: {{ .ZenML.auth.deviceExpirationMinutes | quote }}
|
66
63
|
{{- end }}
|
@@ -82,8 +79,11 @@ external_server_id: {{ .ZenML.auth.externalServerID | quote }}
|
|
82
79
|
{{- if .ZenML.rootUrlPath }}
|
83
80
|
root_url_path: {{ .ZenML.rootUrlPath | quote }}
|
84
81
|
{{- end }}
|
85
|
-
{{- if .ZenML.
|
86
|
-
|
82
|
+
{{- if .ZenML.serverURL }}
|
83
|
+
server_url: {{ .ZenML.serverURL | quote }}
|
84
|
+
{{- end }}
|
85
|
+
{{- if .ZenML.dashboardURL }}
|
86
|
+
dashboard_url: {{ .ZenML.dashboardURL | quote }}
|
87
87
|
{{- end }}
|
88
88
|
{{- if .ZenML.auth.rbacImplementationSource }}
|
89
89
|
rbac_implementation_source: {{ .ZenML.auth.rbacImplementationSource | quote }}
|
@@ -16,9 +16,19 @@ zenml:
|
|
16
16
|
# Overrides the image tag whose default is the chart appVersion.
|
17
17
|
tag:
|
18
18
|
|
19
|
-
# The URL
|
20
|
-
#
|
21
|
-
|
19
|
+
# The URL where the ZenML server API is reachable. If not specified, the
|
20
|
+
# clients will use the same URL used to connect them to the ZenML server.
|
21
|
+
serverURL:
|
22
|
+
|
23
|
+
# The URL where the ZenML dashboard is reachable.
|
24
|
+
# If not specified, the `serverURL` value is used. This should be
|
25
|
+
# configured if the dashboard is served from a different URL than the
|
26
|
+
# ZenML server.
|
27
|
+
#
|
28
|
+
# This is value is used to compute the dashboard URLs during the web login
|
29
|
+
# authentication workflow, to print dashboard URLs in log messages when
|
30
|
+
# running a pipeline and for other similar tasks.
|
31
|
+
dashboardURL:
|
22
32
|
|
23
33
|
debug: true
|
24
34
|
|
@@ -112,12 +122,6 @@ zenml:
|
|
112
122
|
# authorization request.
|
113
123
|
deviceAuthPollingInterval: 5
|
114
124
|
|
115
|
-
# The URL where the ZenML dashboard is hosted. Used to construct the OAuth
|
116
|
-
# 2.0 device authorization endpoint. If not set, a partial URL is returned
|
117
|
-
# to the client which is used to construct the full URL based on the
|
118
|
-
# server's root URL path.
|
119
|
-
dashboardURL:
|
120
|
-
|
121
125
|
# The time in minutes that an OAuth 2.0 device is allowed to be used to
|
122
126
|
# authenticate with the ZenML server. If not set or if
|
123
127
|
# `zenml.auth.jwtTokenExpireMinutes` is not set, the devices are allowed to
|
@@ -58,6 +58,7 @@ def run_pipeline(
|
|
58
58
|
Raises:
|
59
59
|
ValueError: If the deployment does not have an associated stack or
|
60
60
|
build.
|
61
|
+
RuntimeError: If the server URL is not set in the server configuration.
|
61
62
|
|
62
63
|
Returns:
|
63
64
|
ID of the new pipeline run.
|
@@ -87,8 +88,11 @@ def run_pipeline(
|
|
87
88
|
assert auth_context.access_token
|
88
89
|
api_token = auth_context.access_token.encode()
|
89
90
|
|
90
|
-
server_url = server_config().
|
91
|
-
|
91
|
+
server_url = server_config().server_url
|
92
|
+
if not server_url:
|
93
|
+
raise RuntimeError(
|
94
|
+
"The server URL is not set in the server configuration"
|
95
|
+
)
|
92
96
|
assert build.zenml_version
|
93
97
|
zenml_version = build.zenml_version
|
94
98
|
|
@@ -458,10 +458,10 @@ def device_authorization(
|
|
458
458
|
),
|
459
459
|
)
|
460
460
|
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
)
|
461
|
+
dashboard_url = config.dashboard_url or config.server_url
|
462
|
+
|
463
|
+
if dashboard_url:
|
464
|
+
verification_uri = dashboard_url.lstrip("/") + DEVICES + DEVICE_VERIFY
|
465
465
|
else:
|
466
466
|
verification_uri = DEVICES + DEVICE_VERIFY
|
467
467
|
|
@@ -15,6 +15,7 @@
|
|
15
15
|
|
16
16
|
import os
|
17
17
|
from asyncio.log import logger
|
18
|
+
from genericpath import isfile
|
18
19
|
from typing import Any, List
|
19
20
|
|
20
21
|
from fastapi import FastAPI, HTTPException, Request
|
@@ -22,7 +23,6 @@ from fastapi.exceptions import RequestValidationError
|
|
22
23
|
from fastapi.responses import ORJSONResponse
|
23
24
|
from fastapi.staticfiles import StaticFiles
|
24
25
|
from fastapi.templating import Jinja2Templates
|
25
|
-
from genericpath import isfile
|
26
26
|
from starlette.middleware.cors import CORSMiddleware
|
27
27
|
from starlette.responses import FileResponse
|
28
28
|
|
@@ -375,7 +375,6 @@ class BaseZenStore(
|
|
375
375
|
server_config = ServerConfiguration.get_server_config()
|
376
376
|
deployment_type = server_config.deployment_type
|
377
377
|
auth_scheme = server_config.auth_scheme
|
378
|
-
base_url = server_config.base_url
|
379
378
|
metadata = server_config.metadata
|
380
379
|
secrets_store_type = SecretsStoreType.NONE
|
381
380
|
if isinstance(self, SqlZenStore) and self.config.secrets_store:
|
@@ -390,7 +389,8 @@ class BaseZenStore(
|
|
390
389
|
debug=IS_DEBUG_ENV,
|
391
390
|
secrets_store_type=secrets_store_type,
|
392
391
|
auth_scheme=auth_scheme,
|
393
|
-
|
392
|
+
server_url=server_config.server_url or "",
|
393
|
+
dashboard_url=server_config.dashboard_url or "",
|
394
394
|
analytics_enabled=GlobalConfiguration().analytics_opt_in,
|
395
395
|
metadata=metadata,
|
396
396
|
use_legacy_dashboard=use_legacy_dashboard,
|
@@ -30,6 +30,7 @@ from zenml.models import (
|
|
30
30
|
PipelineRunResponseMetadata,
|
31
31
|
PipelineRunUpdate,
|
32
32
|
)
|
33
|
+
from zenml.models.v2.core.pipeline_run import PipelineRunResponseResources
|
33
34
|
from zenml.zen_stores.schemas.base_schemas import NamedSchema
|
34
35
|
from zenml.zen_stores.schemas.pipeline_build_schemas import PipelineBuildSchema
|
35
36
|
from zenml.zen_stores.schemas.pipeline_deployment_schemas import (
|
@@ -310,11 +311,22 @@ class PipelineRunSchema(NamedSchema, table=True):
|
|
310
311
|
orchestrator_environment=orchestrator_environment,
|
311
312
|
orchestrator_run_id=self.orchestrator_run_id,
|
312
313
|
)
|
314
|
+
|
315
|
+
resources = None
|
316
|
+
if include_resources:
|
317
|
+
model_version = None
|
318
|
+
if config.model and config.model.model_version_id:
|
319
|
+
model_version = config.model._get_model_version(hydrate=False)
|
320
|
+
resources = PipelineRunResponseResources(
|
321
|
+
model_version=model_version
|
322
|
+
)
|
323
|
+
|
313
324
|
return PipelineRunResponse(
|
314
325
|
id=self.id,
|
315
326
|
name=self.name,
|
316
327
|
body=body,
|
317
328
|
metadata=metadata,
|
329
|
+
resources=resources,
|
318
330
|
)
|
319
331
|
|
320
332
|
def update(self, run_update: "PipelineRunUpdate") -> "PipelineRunSchema":
|
@@ -37,6 +37,7 @@ from zenml.models import (
|
|
37
37
|
StepRunResponseMetadata,
|
38
38
|
StepRunUpdate,
|
39
39
|
)
|
40
|
+
from zenml.models.v2.core.step_run import StepRunResponseResources
|
40
41
|
from zenml.zen_stores.schemas.base_schemas import NamedSchema
|
41
42
|
from zenml.zen_stores.schemas.pipeline_deployment_schemas import (
|
42
43
|
PipelineDeploymentSchema,
|
@@ -250,11 +251,24 @@ class StepRunSchema(NamedSchema, table=True):
|
|
250
251
|
parent_step_ids=[p.parent_id for p in self.parents],
|
251
252
|
run_metadata=run_metadata,
|
252
253
|
)
|
254
|
+
|
255
|
+
resources = None
|
256
|
+
if include_resources:
|
257
|
+
model_version = None
|
258
|
+
if full_step_config.config.model:
|
259
|
+
model_version = (
|
260
|
+
full_step_config.config.model._get_model_version(
|
261
|
+
hydrate=False
|
262
|
+
)
|
263
|
+
)
|
264
|
+
resources = StepRunResponseResources(model_version=model_version)
|
265
|
+
|
253
266
|
return StepRunResponse(
|
254
267
|
id=self.id,
|
255
268
|
name=self.name,
|
256
269
|
body=body,
|
257
270
|
metadata=metadata,
|
271
|
+
resources=resources,
|
258
272
|
)
|
259
273
|
|
260
274
|
def update(self, step_update: "StepRunUpdate") -> "StepRunSchema":
|
@@ -4336,7 +4336,7 @@ class SqlZenStore(BaseZenStore):
|
|
4336
4336
|
with Session(self.engine) as session:
|
4337
4337
|
return self._get_run_schema(
|
4338
4338
|
run_name_or_id, session=session
|
4339
|
-
).to_model(include_metadata=hydrate)
|
4339
|
+
).to_model(include_metadata=hydrate, include_resources=hydrate)
|
4340
4340
|
|
4341
4341
|
def _replace_placeholder_run(
|
4342
4342
|
self,
|
@@ -7032,7 +7032,9 @@ class SqlZenStore(BaseZenStore):
|
|
7032
7032
|
f"Unable to get step run with ID {step_run_id}: No step "
|
7033
7033
|
"run with this ID found."
|
7034
7034
|
)
|
7035
|
-
return step_run.to_model(
|
7035
|
+
return step_run.to_model(
|
7036
|
+
include_metadata=hydrate, include_resources=hydrate
|
7037
|
+
)
|
7036
7038
|
|
7037
7039
|
def list_run_steps(
|
7038
7040
|
self,
|
{zenml_nightly-0.57.1.dev20240522.dist-info → zenml_nightly-0.57.1.dev20240527.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: zenml-nightly
|
3
|
-
Version: 0.57.1.
|
3
|
+
Version: 0.57.1.dev20240527
|
4
4
|
Summary: ZenML: Write production-ready ML code.
|
5
5
|
Home-page: https://zenml.io
|
6
6
|
License: Apache-2.0
|
@@ -88,8 +88,8 @@ Requires-Dist: psutil (>=5.0.0)
|
|
88
88
|
Requires-Dist: pydantic (>=1.9.0,<1.11)
|
89
89
|
Requires-Dist: pyjwt[crypto] (==2.7.*) ; extra == "server"
|
90
90
|
Requires-Dist: pyment (>=0.3.3,<0.4.0) ; extra == "dev"
|
91
|
-
Requires-Dist: pymysql (>=1.
|
92
|
-
Requires-Dist: pyparsing (>=2.4.0
|
91
|
+
Requires-Dist: pymysql (>=1.1.1,<1.2.0)
|
92
|
+
Requires-Dist: pyparsing (>=2.4.0)
|
93
93
|
Requires-Dist: pytest (>=7.4.0,<8.0.0) ; extra == "dev"
|
94
94
|
Requires-Dist: pytest-clarity (>=1.0.1,<2.0.0) ; extra == "dev"
|
95
95
|
Requires-Dist: pytest-instafail (>=0.5.0) ; extra == "dev"
|
{zenml_nightly-0.57.1.dev20240522.dist-info → zenml_nightly-0.57.1.dev20240527.dist-info}/RECORD
RENAMED
@@ -6,7 +6,7 @@ RELEASE_NOTES.md,sha256=nC2UkiTwsa-HUz9Rr3rNezhsByLRM5oFVyKyDTW0X9E,321474
|
|
6
6
|
ROADMAP.md,sha256=hiLSmr16BH8Dfx7SaQM4JcXCGCVl6mFZPFAwJeDTrJU,407
|
7
7
|
SECURITY.md,sha256=9DepA8y03yvCZLHEfcXLTDH4lUyKHquAdukBsccNN7c,682
|
8
8
|
zenml/README.md,sha256=827dekbOWAs1BpW7VF1a4d7EbwPbjwccX-2zdXBENZo,1777
|
9
|
-
zenml/VERSION,sha256
|
9
|
+
zenml/VERSION,sha256=-hRBttxV3K6LMSjDwzDNcYyzzyj1KFMPM8VXGiVwC5g,19
|
10
10
|
zenml/__init__.py,sha256=qT3QHiuTgUwk05sOiML0Gcjre3pugvDAw84_br9Psvo,2394
|
11
11
|
zenml/_hub/__init__.py,sha256=6qDzpQAAZa__Aiiz0mC1qM-9dw9_jk_v_aXeJknxbDE,644
|
12
12
|
zenml/_hub/client.py,sha256=LAxLuDjY9ya1PPRzxS0_pvu__FSpAqEjbtHTqVwgMWc,9071
|
@@ -41,7 +41,7 @@ zenml/cli/__init__.py,sha256=d-sgsgvMAHNa37Kch5nMz3i7VHP6UwhU89NBWBEOW4Y,77269
|
|
41
41
|
zenml/cli/annotator.py,sha256=tEdducGdFn57DFLJVZQ-MyXH1auTGFueRmDc78N-vPQ,6970
|
42
42
|
zenml/cli/artifact.py,sha256=UY_inYCNCKPzHyFXfSRnpR2xHaQYzqL1hvKGxaRHKMU,9012
|
43
43
|
zenml/cli/authorized_device.py,sha256=_1PzE3BM2SmwtuzRliEMStvbBRKWQmg_lbwCRtn8dBg,4324
|
44
|
-
zenml/cli/base.py,sha256=
|
44
|
+
zenml/cli/base.py,sha256=TPGYYVjj4SbWVG1Js-DYReX9rVBagUoKylrgdNS6JCg,27814
|
45
45
|
zenml/cli/cli.py,sha256=Pnq468IZ4oqzluA_gZ5PsrdnSPEyHcasIH-xI1_8Y_Q,5454
|
46
46
|
zenml/cli/code_repository.py,sha256=7DNJMc7RL8GaU8DwX0mDSViLH9oclqhsX2AU-VWOKb8,6979
|
47
47
|
zenml/cli/config.py,sha256=UI_j0a_zRgEUd2q0zuOi4UgbjiCYjMJ_Y9iSg-wi8Oo,2768
|
@@ -68,36 +68,37 @@ zenml/cli/utils.py,sha256=l4qGSWyJD1_jqkvYMxwrbfyEqNe2x1_EAjYJFfcXBg4,87644
|
|
68
68
|
zenml/cli/version.py,sha256=nm1iSU_1V6-MUwpMKeXcwFhLYGUMLswvQL67cEuCpxA,3635
|
69
69
|
zenml/cli/web_login.py,sha256=y5fWX4iU4DfxGxyiAIQ9POQiRAxUnB3df-ZzWDMSrw0,7350
|
70
70
|
zenml/cli/workspace.py,sha256=bp02aXou574ToWPD8OAIB_cg3mvpE011H8aMKegT-nU,2970
|
71
|
-
zenml/client.py,sha256
|
71
|
+
zenml/client.py,sha256=-vW3ei3ymx2A2t0tvYYN6AI-szjTqctNv6Vu8RtZ7Qg,261538
|
72
72
|
zenml/client_lazy_loader.py,sha256=gtQvqhOo9bhU8VsIy3AZMobya15EigGZdAasug-XvgA,6333
|
73
73
|
zenml/code_repositories/__init__.py,sha256=W5bDfzAG8OXIKZSV1L-VHuzMcSCYa9qzTdPb3jqfyYw,920
|
74
74
|
zenml/code_repositories/base_code_repository.py,sha256=_DbxIBxvJlN0PFhST0vlTIQ26Q6V3Nar0kYdeGaJrk8,4386
|
75
75
|
zenml/code_repositories/git/__init__.py,sha256=vU8UzMp8sv9n-R2r7VKa9LdQcYER6BhO4O-z8Ppa3kM,824
|
76
76
|
zenml/code_repositories/git/local_git_repository_context.py,sha256=hWP-7Fk_JRZaHFM_6BkGH243XVWRhGENBO5McYAV_Kw,5288
|
77
77
|
zenml/code_repositories/local_repository_context.py,sha256=N1EagG_gh_BTQ4Z_CC1dHBTQfYvgNjtWnAAANQD_2CA,2743
|
78
|
-
zenml/config/__init__.py,sha256=
|
78
|
+
zenml/config/__init__.py,sha256=DZEic7euSbwI9Yb3FMRQhTgfhqz-C6OdAiYmOb0-opI,1519
|
79
79
|
zenml/config/base_settings.py,sha256=y_i95RBfgCo7CnqG0FTwQXQ0rwc9rbl8WClc3X7EvoY,1736
|
80
80
|
zenml/config/build_configuration.py,sha256=uFo9LAkCbfX1HTX3RYX8412w4ifbdElV7SP1CvhIHfI,4304
|
81
81
|
zenml/config/compiler.py,sha256=YZyIRLqTshnpUXnFu6b55mptDzCzISfPTxmNpWDpBvM,22261
|
82
82
|
zenml/config/constants.py,sha256=QvSgMwXWxtspcJ45CrFDP1ZY3w6gS3bIhXLOtIDAbZA,713
|
83
83
|
zenml/config/docker_settings.py,sha256=CGCCf8Fj0LLhQi2S-7HzGnIxzkcmkMSHlzaQWmwWMPM,11859
|
84
84
|
zenml/config/global_config.py,sha256=JlC3UXHeHIJa6TWlOrxneH1FsraHs_DLpDdlqUfRLE8,29409
|
85
|
-
zenml/config/pipeline_configurations.py,sha256=
|
86
|
-
zenml/config/pipeline_run_configuration.py,sha256=
|
85
|
+
zenml/config/pipeline_configurations.py,sha256=oqP-bYLAGlnM-bAdaRijXtImkGY8keoX2tGgHQwg7PM,2992
|
86
|
+
zenml/config/pipeline_run_configuration.py,sha256=y7_yJ9193C-zNSIe6yZU5viuqxZn97CfZhu5QrlvGvs,1838
|
87
87
|
zenml/config/pipeline_spec.py,sha256=ROzDX6WqP1uBbGARAd59Gw09GcJs-jpNMrIZpQ6SN0k,2768
|
88
88
|
zenml/config/resource_settings.py,sha256=xea8jSMa1TUSQfxHNkBPSsp_jZddCVJUlLIEReEFOaY,3869
|
89
|
+
zenml/config/retry_config.py,sha256=4UH1xqw0G6fSEbXSNKfmiFEkwadxQef9BGMe3JBm6NI,929
|
89
90
|
zenml/config/schedule.py,sha256=yGKoROyyfWaGmpkXGTPPASaLdCalbJnRaCWfTI5J9uI,5136
|
90
91
|
zenml/config/secret_reference_mixin.py,sha256=CKi5M9PbKyYIVkZsXWn9V3qbx0Ne7SQd9-n7_ZLSpeE,5748
|
91
92
|
zenml/config/secrets_store_config.py,sha256=HP4_FY6a2uSJLRnxy2dH--AHAoNGQ915vhFRN2gASQI,3134
|
92
|
-
zenml/config/server_config.py,sha256=
|
93
|
+
zenml/config/server_config.py,sha256=_HJPOGB7dMI_EDEz9tba-253a-HhTNlmdGOkjA7s_0k,23087
|
93
94
|
zenml/config/settings_resolver.py,sha256=vb7cWaPFw1KsHv33EMBObmC-_R7lmJFeSLC5l4u9RPU,4279
|
94
95
|
zenml/config/source.py,sha256=jFqmzjURZ1Op0QupoKDIfw7bcak3uuASI-sh1NfB54Y,6894
|
95
|
-
zenml/config/step_configurations.py,sha256=
|
96
|
+
zenml/config/step_configurations.py,sha256=AdDCB54-FYc1iQojo0HppzDh-1R1Mzz0nU2iVXtut_k,8792
|
96
97
|
zenml/config/step_run_info.py,sha256=bZW28YZ1M9sG4EAKHthCAKm6DsSR9ox1OkJG0Zjfzhg,1813
|
97
98
|
zenml/config/store_config.py,sha256=xdxwKt1T4JmO_U0_2_mptLPb41FEpT7dLz-liJAeu80,3585
|
98
99
|
zenml/config/strict_base_model.py,sha256=jB7a9MKKjv01I90PIzMTfnF-VWIHuO1xg5HMTmh8JFc,912
|
99
100
|
zenml/console.py,sha256=hj_KerPQKwnyKACj0ehSqUQX0mGVCJBKE1QvCt6ik3A,1160
|
100
|
-
zenml/constants.py,sha256=
|
101
|
+
zenml/constants.py,sha256=9iE-9BwZBO_EmlYFJi8qSCavGHyvAfAUuIR2XfxHL-Q,15340
|
101
102
|
zenml/container_registries/__init__.py,sha256=ZSPbBIOnzhg88kQSpYgKe_POLuru14m629665-kAVAA,2200
|
102
103
|
zenml/container_registries/azure_container_registry.py,sha256=t1sfDa94Vzbyqtb1iPFNutJ2EXV5_p9CUNITasoiQ70,2667
|
103
104
|
zenml/container_registries/base_container_registry.py,sha256=4HmcXc4kOPLR1OePImlq9pGUyL-vVdfrbvd5v5Rbb2A,7551
|
@@ -317,13 +318,13 @@ zenml/integrations/kubeflow/orchestrators/local_deployment_utils.py,sha256=qszoO
|
|
317
318
|
zenml/integrations/kubeflow/utils.py,sha256=NppvCySRRmO_dr77bpJQzdD3oS5h_gKwlA0ge0R7gdg,3159
|
318
319
|
zenml/integrations/kubernetes/__init__.py,sha256=hEYaYka81NZSI58aYUdvrkM113P6AZr8ZcbOgtdFEds,1657
|
319
320
|
zenml/integrations/kubernetes/flavors/__init__.py,sha256=ANKG2tCNpna3xVSmA2V9WOwFBgVX67V_ax-lGoVZ_So,966
|
320
|
-
zenml/integrations/kubernetes/flavors/kubernetes_orchestrator_flavor.py,sha256=
|
321
|
+
zenml/integrations/kubernetes/flavors/kubernetes_orchestrator_flavor.py,sha256=EmdCUW9Xsh5aN3Q0aha8I0NbskahxvZdxOJ2BU_0nJA,7255
|
321
322
|
zenml/integrations/kubernetes/orchestrators/__init__.py,sha256=TJID3OTieZBox36WpQpzD0jdVRA_aZVcs_bNtfXS8ik,811
|
322
323
|
zenml/integrations/kubernetes/orchestrators/kube_utils.py,sha256=DLO4SPM9oQWYCvgVziIC_e5Z4GHsjUoF3B_ZjeudSBc,10490
|
323
|
-
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator.py,sha256=
|
324
|
+
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator.py,sha256=spGBEtqKF8AcYSOzWtCjCdPFXT9idR2mgr2ctCau42g,21361
|
324
325
|
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator_entrypoint.py,sha256=p6B6ZdOmAwbG1td4oCC5ivtv8RPvMic6_CZJA12GDeU,5313
|
325
326
|
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator_entrypoint_configuration.py,sha256=Y7uGU8eksMluGyXYsf688CwpiXwI_W6WYLscYwRZXRY,2494
|
326
|
-
zenml/integrations/kubernetes/orchestrators/manifest_utils.py,sha256=
|
327
|
+
zenml/integrations/kubernetes/orchestrators/manifest_utils.py,sha256=G57s2qP7oruKBeJUZfZufo4E6Ec2Dx9aHdXfs622BiY,10824
|
327
328
|
zenml/integrations/kubernetes/pod_settings.py,sha256=J8WIae-F8BLRE9faLxofrOaIE54Ak-e6dHC3uadUJLw,5111
|
328
329
|
zenml/integrations/kubernetes/serialization_utils.py,sha256=cPSe4szdBLzDnUZT9nQc2CCA8h84aj5oTA8vsUE36ig,7000
|
329
330
|
zenml/integrations/kubernetes/service_connectors/__init__.py,sha256=Uf6zlHIapYrRDl3xOPWQ2jA7jt85SXx1U7DmSxzxTvQ,818
|
@@ -465,7 +466,7 @@ zenml/integrations/skypilot_lambda/orchestrators/__init__.py,sha256=3S2SmBfCp-ID
|
|
465
466
|
zenml/integrations/skypilot_lambda/orchestrators/skypilot_lambda_vm_orchestrator.py,sha256=G7vq0l4U0EsIIOc2AeEMCa8BBy94MscgfBpfpy_p6BY,3050
|
466
467
|
zenml/integrations/slack/__init__.py,sha256=QL8xxUvruDCtEXkL5sB842r2XVeLvxECwQm_U8BVf0s,1531
|
467
468
|
zenml/integrations/slack/alerters/__init__.py,sha256=Jc28JIUWq-k4b6-UkmdIs4WYTuWR2Pvg8Hw7zyoqYN0,733
|
468
|
-
zenml/integrations/slack/alerters/slack_alerter.py,sha256=
|
469
|
+
zenml/integrations/slack/alerters/slack_alerter.py,sha256=G2qmXlsC2VkuG8bWqwJbecBRnQrTGW0hwmMW0z293Jw,11141
|
469
470
|
zenml/integrations/slack/flavors/__init__.py,sha256=JOmt7i06JHgW36vYcHwHk1qSC3xOgPCK26Ij73CNtww,886
|
470
471
|
zenml/integrations/slack/flavors/slack_alerter_flavor.py,sha256=EsRuN6nBTFsuM_nze9d66_Z-XRU9qcJ6lDISjdpNUxA,4286
|
471
472
|
zenml/integrations/slack/steps/__init__.py,sha256=46AYxvMjeqDJvkrzktWwqLj0H1ecfzKOaq4LKTin_ek,661
|
@@ -548,7 +549,7 @@ zenml/metadata/lazy_load.py,sha256=tV7sPRpiLqjtmeGT4ZWHPi-gDFYbQJCdxuscK6MhOAY,2
|
|
548
549
|
zenml/metadata/metadata_types.py,sha256=egf1SBOrdnzgwOTyOYGrdpb24q4IexgHh6R1U-qIJds,3532
|
549
550
|
zenml/model/__init__.py,sha256=bFPHnWCgAGAjUPCmODHUmwbB0KGljNSEik857Yi-QX0,673
|
550
551
|
zenml/model/lazy_load.py,sha256=HozE1XKuP2GWAf1stwk_-kHhKI-867pV128Fsuoe_Tk,1172
|
551
|
-
zenml/model/model.py,sha256=
|
552
|
+
zenml/model/model.py,sha256=LgeTQduPi60crM8K-34Te7z-oEBa436Gp3pq0ghNVxk,29632
|
552
553
|
zenml/model/model_version.py,sha256=ZMO6TtMRi5g4K04kZIg3cfT5RR91VVH8255WZp4Z5sU,1307
|
553
554
|
zenml/model/utils.py,sha256=QnSZnIK8QvNljEWUuLx7vv_wvK9DDXlaR89yfL4bcHY,9029
|
554
555
|
zenml/model_deployers/__init__.py,sha256=oVBLtTfrNenl5OI1iqtQUvJ0vpocRVUN_HIt8qpoZmY,1730
|
@@ -580,13 +581,13 @@ zenml/models/v2/core/event_source_flavor.py,sha256=TgrGkypnJUutMvvHE7Y9MbUiEeNXZ
|
|
580
581
|
zenml/models/v2/core/flavor.py,sha256=cWxQqJLyOGCCk1weDSW1GuZssJglsFPvqnQnbjI5wM4,10849
|
581
582
|
zenml/models/v2/core/logs.py,sha256=9XUd6h5DSx-GHKmCe8JFtdApJEFQffdo--wNZP61Ct8,4007
|
582
583
|
zenml/models/v2/core/model.py,sha256=WM0wL3oy4jfukXT8wQuWMnsOFkC9590gILx_g5RcSQg,9358
|
583
|
-
zenml/models/v2/core/model_version.py,sha256=
|
584
|
+
zenml/models/v2/core/model_version.py,sha256=BWVznMXXXmB-H0AO48A1m004oyZ4gO6RQ8QzmvXoYHs,19115
|
584
585
|
zenml/models/v2/core/model_version_artifact.py,sha256=Z5P-4v9xuW1UGjK7ZiYNj-EiKXtRX6j6iZbMV5H7ls8,8498
|
585
586
|
zenml/models/v2/core/model_version_pipeline_run.py,sha256=cbJF5lLQLLE5lCdCxjdhbsgC57Sw-jjeOsLX3uIjWeU,5546
|
586
587
|
zenml/models/v2/core/pipeline.py,sha256=r5NIW8fEcxrh-uo1SRuSrQa1mFztzWWkOgLijekcnB8,9638
|
587
588
|
zenml/models/v2/core/pipeline_build.py,sha256=bJLec9hPYFPDRMfiQKLXo47MxYOM78VfSSf3pFI1Uk0,14359
|
588
589
|
zenml/models/v2/core/pipeline_deployment.py,sha256=cErFwy1H2mMYnGxmyaGA-W0A_y8lVveXQBGKCjp1Gzg,10863
|
589
|
-
zenml/models/v2/core/pipeline_run.py,sha256=
|
590
|
+
zenml/models/v2/core/pipeline_run.py,sha256=BAvUs-snVFf2QpFqdx_i-mYXCAZvwfeM41AjlJszotI,17346
|
590
591
|
zenml/models/v2/core/run_metadata.py,sha256=cEVu6LQ5WQh3LoxVwvtOPPBQ7PAJdtZTnGshpTgGjIc,6902
|
591
592
|
zenml/models/v2/core/schedule.py,sha256=tcjydXqq0Hu8LC6hdxaRqGGSsXTZKuctqC-9nduNK7g,9678
|
592
593
|
zenml/models/v2/core/secret.py,sha256=wZxYpgEiGOkmtgghjtYtjM9CrvHxSKPKoUGNjG1ivkI,11221
|
@@ -595,7 +596,7 @@ zenml/models/v2/core/service.py,sha256=GD2sxD06aQ4gY0XQ_N0rRXuN9iMpuckJC20IGgIcn
|
|
595
596
|
zenml/models/v2/core/service_account.py,sha256=ujCbvoR_Bf6WeYjCFSSoGVvWMzifhkh2QUqkPii7moo,6161
|
596
597
|
zenml/models/v2/core/service_connector.py,sha256=QdTw5Zc_sJSj-hSGHDSo_DX6AfA-AeUaowqFQuIHk9M,30608
|
597
598
|
zenml/models/v2/core/stack.py,sha256=xCES0c2dxblNpHRh-S4a4_HUxrrVdxAWoSzj2uauX94,8611
|
598
|
-
zenml/models/v2/core/step_run.py,sha256=
|
599
|
+
zenml/models/v2/core/step_run.py,sha256=RNS4UVxFdxdbOuY4_h7h6fB4_0SPNYy_ImYn0JuHQyQ,14439
|
599
600
|
zenml/models/v2/core/tag.py,sha256=5mEtFpX-aoREdYksr2YUDaA8wmBfjOXofBJQRG4dmZ8,3350
|
600
601
|
zenml/models/v2/core/tag_resource.py,sha256=H7CPj9oaUpym8vSkwuYSJ6_rWfHMEKVRedPw2kyxmII,2640
|
601
602
|
zenml/models/v2/core/trigger.py,sha256=Qs-KftDkl19kHQjuGE533gxkJvKIG__sp3SR3MltAek,11320
|
@@ -608,7 +609,7 @@ zenml/models/v2/misc/build_item.py,sha256=Tj1DQxsMXbOQJgJ7iT6gFcKR3-oPH_rsQsgGrm
|
|
608
609
|
zenml/models/v2/misc/external_user.py,sha256=aJ2ikOXAP3TK3JhrMv8ZHU1Npbjf8MF0L4-98Zg_Abk,1002
|
609
610
|
zenml/models/v2/misc/hub_plugin_models.py,sha256=2fh0yel3NiqQMcQliEfeiFH9R4Np_hRkGwO9MM9tuz8,2192
|
610
611
|
zenml/models/v2/misc/loaded_visualization.py,sha256=S-l1S6-T0I2aCEhBXP-5u5tfg-tplRd_ncdHXUj00TM,903
|
611
|
-
zenml/models/v2/misc/server_models.py,sha256=
|
612
|
+
zenml/models/v2/misc/server_models.py,sha256=wd14abzVBnv4lBIb_dbBSTkqGcdQjI-LcdoZC_2ucSw,3613
|
612
613
|
zenml/models/v2/misc/service_connector_type.py,sha256=K_5JovenT0VQZPICSTH9O7RUy5bw5_HaiKAwvm44Wzc,28929
|
613
614
|
zenml/models/v2/misc/user_auth.py,sha256=UbZyjMpq0OOTaIyK-K_z9wvfT3OpcXFBTRXQvAR7FBU,7078
|
614
615
|
zenml/new/__init__.py,sha256=knhroJ2h0uHBCGzAiBBGJEiuhEA3cwI6XYBRIyXdbkQ,613
|
@@ -619,11 +620,11 @@ zenml/new/pipelines/model_utils.py,sha256=vGy4kT1ZZbUzAbugAIh9RdH9nAQBqBT5jBKNxY
|
|
619
620
|
zenml/new/pipelines/pipeline.py,sha256=Egvg0PqZ05tWVU_A82X0q6sQHlR3RHB5HW-jScmDvVE,54396
|
620
621
|
zenml/new/pipelines/pipeline_context.py,sha256=O00zdlgvJkYp6TVmgT8aIth61OkIvEgcUS21dXFVqek,4056
|
621
622
|
zenml/new/pipelines/pipeline_decorator.py,sha256=p0K0caZEykEJW3W3x3JopALc5393zZ3uzNiLBykrCTs,4110
|
622
|
-
zenml/new/pipelines/run_utils.py,sha256=
|
623
|
+
zenml/new/pipelines/run_utils.py,sha256=RVOPWRS4TMbfe7ginKNbd1GrAP0Lmt1SQyPfHOXq6kU,8643
|
623
624
|
zenml/new/steps/__init__.py,sha256=knhroJ2h0uHBCGzAiBBGJEiuhEA3cwI6XYBRIyXdbkQ,613
|
624
625
|
zenml/new/steps/decorated_step.py,sha256=C8Ng5PCLc9eql4JF1N345HQ6LyC1qCUdTnysUTeoAJs,1315
|
625
626
|
zenml/new/steps/step_context.py,sha256=MqiEr8biW_kemd8XioYWqjRcpKv-Uyh-DmzVIj5i2QA,16341
|
626
|
-
zenml/new/steps/step_decorator.py,sha256=
|
627
|
+
zenml/new/steps/step_decorator.py,sha256=aOqWbQnfuw4zrD8JnLjO22AlKPW6t_muOpGIv_VYlok,6711
|
627
628
|
zenml/orchestrators/__init__.py,sha256=cKpi3NjRAancyFfTifvmKXiqoYPjiYy3hvvIjXZ6OhA,1852
|
628
629
|
zenml/orchestrators/base_orchestrator.py,sha256=3sdv3-4DA1Px0vGMIgVyEYmFi4IC1A3ugpYax5ZievU,8690
|
629
630
|
zenml/orchestrators/cache_utils.py,sha256=J5sMmgy-qRJVtTWt5hDjSAR6vPPulOhMJu0m-Y1onO8,4327
|
@@ -636,10 +637,10 @@ zenml/orchestrators/local_docker/__init__.py,sha256=k8J68ydy6HmmvE9tWo32g761H8P_
|
|
636
637
|
zenml/orchestrators/local_docker/local_docker_orchestrator.py,sha256=fOCn1tqcm5AdmyeADvflvbO-PIZoWFdXNfnuHovsfpI,10478
|
637
638
|
zenml/orchestrators/output_utils.py,sha256=Gz7SX2cbQ3w4eyfU0XuhKEKGtalQGBoc6moDRNVHN8M,3311
|
638
639
|
zenml/orchestrators/publish_utils.py,sha256=aNwgTDmVSq9qCDP3Ldk77YNXnWx_YHjYNTEJwYeZo9s,4579
|
639
|
-
zenml/orchestrators/step_launcher.py,sha256=
|
640
|
-
zenml/orchestrators/step_runner.py,sha256=
|
640
|
+
zenml/orchestrators/step_launcher.py,sha256=WAKIiUSck2mvFpAd_q2uNVapBMShwmtooQkpjfC1dgs,20115
|
641
|
+
zenml/orchestrators/step_runner.py,sha256=AIhcRKEF-gUozdqKvfxb-lMMJVxKre1_FGyfcHxnnkk,26528
|
641
642
|
zenml/orchestrators/topsort.py,sha256=D8evz3X47zwpXd90NMLsJD-_uCeXtV6ClzNfDUrq7cM,5784
|
642
|
-
zenml/orchestrators/utils.py,sha256=
|
643
|
+
zenml/orchestrators/utils.py,sha256=osonxW0DZxDAHnHLKHcDRA63VMsZNjpg2BHY55lBVCg,10498
|
643
644
|
zenml/pipelines/__init__.py,sha256=CFicPKDGOjWcsTdarphxK1bbw6M1Ny9kqb76Q5p6sFQ,1575
|
644
645
|
zenml/pipelines/base_pipeline.py,sha256=6agrRdNtEvUdOJB9OS3dmjZaH1aMrRT8kpG7jvneSQ4,9967
|
645
646
|
zenml/pipelines/pipeline_decorator.py,sha256=-uNZ7Jto1OyenTKTqjZ68CYC1Bd2Fl5QNMZ45QA_UHc,5289
|
@@ -690,7 +691,7 @@ zenml/step_operators/base_step_operator.py,sha256=ZRnY6lcEHY8xZskrKKdPhgKg2BlEoh
|
|
690
691
|
zenml/step_operators/step_operator_entrypoint_configuration.py,sha256=-Tin2h4fXd-N4giOge9dq0J2WkcJdpqxyyw6zFF4oSA,3647
|
691
692
|
zenml/steps/__init__.py,sha256=IvxepI3tYp6LiVHFJnet9xZ7yFlH6NHCAI69SvQsfaI,1682
|
692
693
|
zenml/steps/base_parameters.py,sha256=rKnALd0lMv0jOX8E9TwHJkeP3H-ijEFXY0T5dMCu9EQ,756
|
693
|
-
zenml/steps/base_step.py,sha256=
|
694
|
+
zenml/steps/base_step.py,sha256=cS8ranoORDeF7_24WczRlkArpAteDHNznGTY1eeLEyo,49688
|
694
695
|
zenml/steps/entrypoint_function_utils.py,sha256=tjtaFee6_6BUMOqf2wNBHxt_ePQ6EXquYAaiRdQ5yJ0,12523
|
695
696
|
zenml/steps/external_artifact.py,sha256=63ngwlSJvR8GoM93ttz1Mp6BuAg7xH-QZAsBvW3M80Q,1109
|
696
697
|
zenml/steps/step_decorator.py,sha256=CyqqNJJFkq1reetl0lMyA_CirBx0cQ6E79ZrrABu0K8,8232
|
@@ -703,7 +704,7 @@ zenml/utils/__init__.py,sha256=jaMTbjm8tLYkaRoxlZ0Em4ye_ZHOHKgP2goPTTiYGUQ,797
|
|
703
704
|
zenml/utils/cloud_utils.py,sha256=hCKGIsC7xZq9nKrpf3p-32e-pKOjXS5-Glj8uYnyzWA,1429
|
704
705
|
zenml/utils/code_repository_utils.py,sha256=CobRYMYfP2yNoA0hcu_WRz5oAff_jY95oyLCHz4fDOo,4734
|
705
706
|
zenml/utils/daemon.py,sha256=GZ7Dx6GLHK04SR50wBxpKYmFhxPBfdLWxJiAWzJC6cM,11863
|
706
|
-
zenml/utils/dashboard_utils.py,sha256=
|
707
|
+
zenml/utils/dashboard_utils.py,sha256=pw-dZ5sTTkCbAep5H3dCYHZcKpyJPbqswXRf-1M_COI,6696
|
707
708
|
zenml/utils/deprecation_utils.py,sha256=NekOWFcWmA3rMvZY5A70g0zH45NHAAb62tTJPmO3O_8,6286
|
708
709
|
zenml/utils/dict_utils.py,sha256=DcZ3RezpkRt3kI_verMmfFblGK4Abzgi35x781-GZSw,2658
|
709
710
|
zenml/utils/docker_utils.py,sha256=bJSlal3NeyQDvqXPE13X8ZJl7jcXE3LStiVX4IVAo3U,13661
|
@@ -995,7 +996,7 @@ zenml/zen_server/deploy/helm/.helmignore,sha256=u5h-ao70WpklXR1jKBJILV8PMlXqhBUg
|
|
995
996
|
zenml/zen_server/deploy/helm/Chart.yaml,sha256=ecc4xSyrz9piYwZq79UpmVBKJRUbbdAF5j7fUs18a2M,333
|
996
997
|
zenml/zen_server/deploy/helm/README.md,sha256=fmPf9EBTkpnNQi1imq4Mo1wMKfphpwP0z1ObICnaN6g,1779
|
997
998
|
zenml/zen_server/deploy/helm/templates/NOTES.txt,sha256=1APbGHYNf5cKDyDXkTYE3ybVBSPrYiSJh4dKCUOtH2c,1977
|
998
|
-
zenml/zen_server/deploy/helm/templates/_environment.tpl,sha256=
|
999
|
+
zenml/zen_server/deploy/helm/templates/_environment.tpl,sha256=Nq0kQGIcRmPe1rLOysdaq-e3MQCnvuNQb5-eLvj3DU8,14397
|
999
1000
|
zenml/zen_server/deploy/helm/templates/_helpers.tpl,sha256=SuPztyigDEA00ftUfQtDCNK25RWZB4x58BXthNLJKJA,2042
|
1000
1001
|
zenml/zen_server/deploy/helm/templates/cert-secret.yaml,sha256=VYA-0FfdF4hACYAsww8NjFL9JTuDUJTUbO8ud_Dveqo,1565
|
1001
1002
|
zenml/zen_server/deploy/helm/templates/hpa.yaml,sha256=wORGNZ7-vL89PHPmyx5bR5TpDXECbyiqu0py1uOWsds,987
|
@@ -1007,7 +1008,7 @@ zenml/zen_server/deploy/helm/templates/server-secret.yaml,sha256=eGkESfHShg-r7AB
|
|
1007
1008
|
zenml/zen_server/deploy/helm/templates/server-service.yaml,sha256=PEYcze_4pKINKW_PbTv0vAvcXRctXuZ9jN0axqLfPFI,367
|
1008
1009
|
zenml/zen_server/deploy/helm/templates/serviceaccount.yaml,sha256=4qX970F0O_SR1HSAMugyYAvwSN_63CqQofU4jV0YJO4,826
|
1009
1010
|
zenml/zen_server/deploy/helm/templates/tests/test-connection.yaml,sha256=DPuf5tBRFLlxGLi8XgIbTG9nxaGn-8Z_oIkYJKjFBNs,379
|
1010
|
-
zenml/zen_server/deploy/helm/values.yaml,sha256=
|
1011
|
+
zenml/zen_server/deploy/helm/values.yaml,sha256=usHWfhI4cgMYuWWRHDFacu8_XhahOA4vDVRruwayXv4,39580
|
1011
1012
|
zenml/zen_server/deploy/local/__init__.py,sha256=0FZTHzxQp36n-_HH-JN-qVBJfH9E8hJeTCdN5w0vyog,770
|
1012
1013
|
zenml/zen_server/deploy/local/local_provider.py,sha256=jrOJ2NPdQib91c_XqXjDW4i34hV5HI31nqrUOPpgrPM,9979
|
1013
1014
|
zenml/zen_server/deploy/local/local_zen_server.py,sha256=lVObPUMuhlIdUV8t-SO7SnYML3cDv0jGmIaGUCAMrt4,8674
|
@@ -1056,7 +1057,7 @@ zenml/zen_server/feature_gate/zenml_cloud_feature_gate.py,sha256=_qpA4qGgtCAwZX5
|
|
1056
1057
|
zenml/zen_server/jwt.py,sha256=AcazqLIFGD_eSoR-toQcUJAdEIlpoSLbHI2zbGsWtes,6139
|
1057
1058
|
zenml/zen_server/pipeline_deployment/__init__.py,sha256=79knXLKfegsvVSVSWecpqrepq6iAavTUA4hKuiDk-WE,613
|
1058
1059
|
zenml/zen_server/pipeline_deployment/runner_entrypoint_configuration.py,sha256=PpraJ77nCOUesVC6IBxNTeVMdS3eWG2vt-4GrT8hORQ,1682
|
1059
|
-
zenml/zen_server/pipeline_deployment/utils.py,sha256=
|
1060
|
+
zenml/zen_server/pipeline_deployment/utils.py,sha256=T4dqRAl3Khb3UdbfPEpDf4Mek_mnE9FRbTJ_vmoj6Nw,13039
|
1060
1061
|
zenml/zen_server/pipeline_deployment/workload_manager_interface.py,sha256=CL9c7z8ajuZE01DaHmdCDCZmsroDcTarvN-nE8jv6qQ,2590
|
1061
1062
|
zenml/zen_server/rate_limit.py,sha256=rOg5H_6rOGQ_qiSCtMKPREmL1LL3bZyn4czKILtImJg,6057
|
1062
1063
|
zenml/zen_server/rbac/__init__.py,sha256=nACbn_G7nZt_AWM3zeFL0FCmELvQnvaOFMwvTG3-6ZE,637
|
@@ -1068,7 +1069,7 @@ zenml/zen_server/rbac/zenml_cloud_rbac.py,sha256=_rWFCmZRk5Z5TzmWmCJAYzSoXSz1C0d
|
|
1068
1069
|
zenml/zen_server/routers/__init__.py,sha256=ViyAhWL-ogHxE9wBvB_iMcur5H1NRVrzXkpogVY7FBA,641
|
1069
1070
|
zenml/zen_server/routers/artifact_endpoint.py,sha256=XhbOat2pddDluiT0a_QH2RfNcqlwtf3yf2Fh92a6ZDw,5175
|
1070
1071
|
zenml/zen_server/routers/artifact_version_endpoints.py,sha256=o9RVrnzuiY-AV6Nj10YwXQ_jy-OqCVMk1hEKfmihPEQ,7751
|
1071
|
-
zenml/zen_server/routers/auth_endpoints.py,sha256=
|
1072
|
+
zenml/zen_server/routers/auth_endpoints.py,sha256=U-Fsvi2oZAaYTj5LYMAokWDofam7YC9cZPzo4iAVWLY,18440
|
1072
1073
|
zenml/zen_server/routers/code_repositories_endpoints.py,sha256=WFCRPsv3Qrm8QtCr5zxfSdgCS5WI1DPNCF4Y6vLXGow,4747
|
1073
1074
|
zenml/zen_server/routers/devices_endpoints.py,sha256=2YoVb_a3fEjsYs8wMQYkzz9qM0n3ylHB6yTVNmhIVRU,10598
|
1074
1075
|
zenml/zen_server/routers/event_source_endpoints.py,sha256=dXupWrySV3LtxsqMVoYpUJ-OK7q6o6ehfuYW_RU1JlA,10379
|
@@ -1096,9 +1097,9 @@ zenml/zen_server/routers/users_endpoints.py,sha256=f-ZuuqtOwiyhtucJ3RAJ4IzeQVYcP
|
|
1096
1097
|
zenml/zen_server/routers/webhook_endpoints.py,sha256=QVvLwVPq5sF4oSWeHln5v76xJP7yjjnyXs8xVMu6g3M,3999
|
1097
1098
|
zenml/zen_server/routers/workspaces_endpoints.py,sha256=FxJa-d7v7v0OExUD1fyYhNO3PKktzHX0KhXRB2Tn2BA,48261
|
1098
1099
|
zenml/zen_server/utils.py,sha256=XeJIwkHqB9F0-GKZC5fNIKGXTw4fu4KjpFYAM_J88Tw,18053
|
1099
|
-
zenml/zen_server/zen_server_api.py,sha256=
|
1100
|
+
zenml/zen_server/zen_server_api.py,sha256=lsbKrOb5om0ulLEYzd1Nr7JhY1V9a4PMaFXpuHn79vw,11209
|
1100
1101
|
zenml/zen_stores/__init__.py,sha256=6LTgH6XwDeDxKqVJ1JTfGhmS8II1NLopPloINGmdyI0,691
|
1101
|
-
zenml/zen_stores/base_zen_store.py,sha256=
|
1102
|
+
zenml/zen_stores/base_zen_store.py,sha256=25ShnDsO2kHFT94dLxtSiG8C_8p7os58g66CJLBtX1M,16018
|
1102
1103
|
zenml/zen_stores/migrations/README.md,sha256=x04jsb6EOP6PBEGMQlDELiqKEham2O-iztAs9AylMFc,4898
|
1103
1104
|
zenml/zen_stores/migrations/__init__.py,sha256=N9CHfdz0AZ6KniQ450VCIV3H0CuWtx83AloYy82woho,657
|
1104
1105
|
zenml/zen_stores/migrations/alembic.py,sha256=JDqx7Md6DxnHtP3xrZG1I0cNv6NyTR0oO3tPRUPaS2I,7455
|
@@ -1258,7 +1259,7 @@ zenml/zen_stores/schemas/logs_schemas.py,sha256=qv6fs3JiVgzlmTXJqb_gG5NsU5q_50e0
|
|
1258
1259
|
zenml/zen_stores/schemas/model_schemas.py,sha256=-GcDOtBFfrh1x17k2HxQflhyeIqnLAxvxkWB4F8JTOw,23664
|
1259
1260
|
zenml/zen_stores/schemas/pipeline_build_schemas.py,sha256=iZ973hGXUrm56LhZrkeJyyx_OBHWIo7rpzRY_q3E6Io,5757
|
1260
1261
|
zenml/zen_stores/schemas/pipeline_deployment_schemas.py,sha256=MmshUXKJgWKAhB9wD0KGEKCcmZJXV-7qqRy5vJw15iA,8902
|
1261
|
-
zenml/zen_stores/schemas/pipeline_run_schemas.py,sha256=
|
1262
|
+
zenml/zen_stores/schemas/pipeline_run_schemas.py,sha256=f6vF4L4vR25l7ZDR2MzPJwKxl-WNOzGxwum3Vo6A_Y4,13754
|
1262
1263
|
zenml/zen_stores/schemas/pipeline_schemas.py,sha256=WEZribAeLe2B0juy_5xmqjvdVOXO5zxo73iFFdElfRU,5747
|
1263
1264
|
zenml/zen_stores/schemas/run_metadata_schemas.py,sha256=thlhF5Y-e1RgOX3mCrW0EaNlQ85fDkEz9g46rTSEpCw,6028
|
1264
1265
|
zenml/zen_stores/schemas/schedule_schema.py,sha256=w3tAHt2mEQ7ILPz4ogRdLV4KivB7E2LtIZWkzXLzAIU,7354
|
@@ -1268,7 +1269,7 @@ zenml/zen_stores/schemas/server_settings_schemas.py,sha256=WWmBuloqpZRHLpkviFlFd
|
|
1268
1269
|
zenml/zen_stores/schemas/service_connector_schemas.py,sha256=x_sJHGCf8hvt1NZVukoE6FJsrZbKEM-pn0lFK4m0TX0,10055
|
1269
1270
|
zenml/zen_stores/schemas/service_schemas.py,sha256=8ZYSGFEr-ry4KMxCWcd6qeySujD9iFFvR-rHpYSqkAM,8998
|
1270
1271
|
zenml/zen_stores/schemas/stack_schemas.py,sha256=IdSnX8czee0_0jRvNa3e7JgMXgXk69s19MlWsgErekU,5217
|
1271
|
-
zenml/zen_stores/schemas/step_run_schemas.py,sha256=
|
1272
|
+
zenml/zen_stores/schemas/step_run_schemas.py,sha256=QbKB5gtV5NCE1meqmdpooqwJ6DpLFNbyc3cO6XAZJlE,13253
|
1272
1273
|
zenml/zen_stores/schemas/tag_schemas.py,sha256=xbDVs-6b1IKmoxBnE1gsOdD4cCWrgkgHTboEF-SCXYM,6792
|
1273
1274
|
zenml/zen_stores/schemas/trigger_schemas.py,sha256=beH4oSYl82OrqYO6OXSYNCFC4fdHWzqD7RB-puG_ux8,10851
|
1274
1275
|
zenml/zen_stores/schemas/user_schemas.py,sha256=LsvkyvWiQyhXqjmv6rigN1RfzIbc3LyscLtVhFFXFjQ,11005
|
@@ -1283,10 +1284,10 @@ zenml/zen_stores/secrets_stores/hashicorp_secrets_store.py,sha256=Dk484FlWAtI5oc
|
|
1283
1284
|
zenml/zen_stores/secrets_stores/secrets_store_interface.py,sha256=Q2Jbnt2Pp7NGlR-u1YBfRZV2g8su2Fd0ArBMdksAE-Q,2819
|
1284
1285
|
zenml/zen_stores/secrets_stores/service_connector_secrets_store.py,sha256=0CgWJoz74iW2n_CgNa8l82cAh5j7gJ9oeo5fu9FunVY,6972
|
1285
1286
|
zenml/zen_stores/secrets_stores/sql_secrets_store.py,sha256=Cips_SPX7CtfYQyOZNiHAhmVtVgb17HCyHQia5MlTX4,8653
|
1286
|
-
zenml/zen_stores/sql_zen_store.py,sha256=
|
1287
|
+
zenml/zen_stores/sql_zen_store.py,sha256=SDOUhR2tgBwyL-JqgviYkafKCrcMqmtRT7_u4UO_t6Y,353483
|
1287
1288
|
zenml/zen_stores/zen_store_interface.py,sha256=vi0tr6vDES97h_rFZZYeaz2Y0nM4xm66CcUXSOEITN4,86372
|
1288
|
-
zenml_nightly-0.57.1.
|
1289
|
-
zenml_nightly-0.57.1.
|
1290
|
-
zenml_nightly-0.57.1.
|
1291
|
-
zenml_nightly-0.57.1.
|
1292
|
-
zenml_nightly-0.57.1.
|
1289
|
+
zenml_nightly-0.57.1.dev20240527.dist-info/LICENSE,sha256=wbnfEnXnafPbqwANHkV6LUsPKOtdpsd-SNw37rogLtc,11359
|
1290
|
+
zenml_nightly-0.57.1.dev20240527.dist-info/METADATA,sha256=XGlzlThlF-Em-qJ2vOG82pLNvIEhRbYq8IdtqqsktxY,19070
|
1291
|
+
zenml_nightly-0.57.1.dev20240527.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
1292
|
+
zenml_nightly-0.57.1.dev20240527.dist-info/entry_points.txt,sha256=QK3ETQE0YswAM2mWypNMOv8TLtr7EjnqAFq1br_jEFE,43
|
1293
|
+
zenml_nightly-0.57.1.dev20240527.dist-info/RECORD,,
|
{zenml_nightly-0.57.1.dev20240522.dist-info → zenml_nightly-0.57.1.dev20240527.dist-info}/LICENSE
RENAMED
File without changes
|
{zenml_nightly-0.57.1.dev20240522.dist-info → zenml_nightly-0.57.1.dev20240527.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|