zenml-nightly 0.70.0.dev20241202__py3-none-any.whl → 0.70.0.dev20241204__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/__init__.py +4 -4
- zenml/cli/base.py +1 -1
- zenml/cli/pipeline.py +48 -79
- zenml/config/secret_reference_mixin.py +1 -1
- zenml/image_builders/base_image_builder.py +5 -2
- zenml/image_builders/build_context.py +7 -16
- zenml/integrations/aws/__init__.py +3 -0
- zenml/integrations/aws/flavors/__init__.py +6 -0
- zenml/integrations/aws/flavors/aws_image_builder_flavor.py +146 -0
- zenml/integrations/aws/image_builders/__init__.py +20 -0
- zenml/integrations/aws/image_builders/aws_image_builder.py +307 -0
- zenml/integrations/gcp/orchestrators/vertex_orchestrator.py +1 -1
- zenml/integrations/kaniko/image_builders/kaniko_image_builder.py +2 -1
- zenml/integrations/kubernetes/flavors/kubernetes_orchestrator_flavor.py +11 -0
- zenml/integrations/lightning/flavors/lightning_orchestrator_flavor.py +11 -0
- zenml/integrations/neptune/experiment_trackers/neptune_experiment_tracker.py +7 -5
- zenml/integrations/neptune/experiment_trackers/run_state.py +69 -53
- zenml/integrations/registry.py +2 -2
- zenml/integrations/skypilot/flavors/skypilot_orchestrator_base_vm_config.py +12 -0
- zenml/materializers/built_in_materializer.py +1 -1
- zenml/orchestrators/base_orchestrator.py +13 -1
- zenml/orchestrators/output_utils.py +5 -1
- zenml/service_connectors/service_connector_utils.py +3 -9
- zenml/stack/stack_component.py +1 -1
- zenml/stack_deployments/aws_stack_deployment.py +22 -0
- zenml/utils/archivable.py +65 -36
- zenml/utils/code_utils.py +8 -4
- zenml/utils/docker_utils.py +9 -0
- zenml/zen_stores/rest_zen_store.py +1 -1
- {zenml_nightly-0.70.0.dev20241202.dist-info → zenml_nightly-0.70.0.dev20241204.dist-info}/METADATA +1 -1
- {zenml_nightly-0.70.0.dev20241202.dist-info → zenml_nightly-0.70.0.dev20241204.dist-info}/RECORD +35 -32
- {zenml_nightly-0.70.0.dev20241202.dist-info → zenml_nightly-0.70.0.dev20241204.dist-info}/LICENSE +0 -0
- {zenml_nightly-0.70.0.dev20241202.dist-info → zenml_nightly-0.70.0.dev20241204.dist-info}/WHEEL +0 -0
- {zenml_nightly-0.70.0.dev20241202.dist-info → zenml_nightly-0.70.0.dev20241204.dist-info}/entry_points.txt +0 -0
@@ -19,6 +19,7 @@ from uuid import uuid4
|
|
19
19
|
|
20
20
|
from zenml.client import Client
|
21
21
|
from zenml.logger import get_logger
|
22
|
+
from zenml.utils import string_utils
|
22
23
|
|
23
24
|
if TYPE_CHECKING:
|
24
25
|
from zenml.artifact_stores import BaseArtifactStore
|
@@ -75,10 +76,13 @@ def prepare_output_artifact_uris(
|
|
75
76
|
artifact_store = stack.artifact_store
|
76
77
|
output_artifact_uris: Dict[str, str] = {}
|
77
78
|
for output_name in step.config.outputs.keys():
|
79
|
+
substituted_output_name = string_utils.format_name_template(
|
80
|
+
output_name, substitutions=step_run.config.substitutions
|
81
|
+
)
|
78
82
|
artifact_uri = generate_artifact_uri(
|
79
83
|
artifact_store=stack.artifact_store,
|
80
84
|
step_run=step_run,
|
81
|
-
output_name=
|
85
|
+
output_name=substituted_output_name,
|
82
86
|
)
|
83
87
|
if artifact_store.exists(artifact_uri):
|
84
88
|
raise RuntimeError("Artifact already exists")
|
@@ -60,15 +60,9 @@ def _raise_specific_cloud_exception_if_needed(
|
|
60
60
|
orchestrators: List[ResourcesInfo],
|
61
61
|
container_registries: List[ResourcesInfo],
|
62
62
|
) -> None:
|
63
|
-
AWS_DOCS =
|
64
|
-
|
65
|
-
|
66
|
-
GCP_DOCS = (
|
67
|
-
"https://docs.zenml.io/how-to/auth-management/gcp-service-connector"
|
68
|
-
)
|
69
|
-
AZURE_DOCS = (
|
70
|
-
"https://docs.zenml.io/how-to/auth-management/azure-service-connector"
|
71
|
-
)
|
63
|
+
AWS_DOCS = "https://docs.zenml.io/how-to/infrastructure-deployment/auth-management/aws-service-connector"
|
64
|
+
GCP_DOCS = "https://docs.zenml.io/how-to/infrastructure-deployment/auth-management/gcp-service-connector"
|
65
|
+
AZURE_DOCS = "https://docs.zenml.io/how-to/infrastructure-deployment/auth-management/azure-service-connector"
|
72
66
|
|
73
67
|
if not artifact_stores:
|
74
68
|
error_msg = (
|
zenml/stack/stack_component.py
CHANGED
@@ -102,7 +102,7 @@ class StackComponentConfig(BaseModel, ABC):
|
|
102
102
|
"in sensitive information as secrets. Check out the "
|
103
103
|
"documentation on how to configure your stack "
|
104
104
|
"components with secrets here: "
|
105
|
-
"https://docs.zenml.io/getting-started/deploying-zenml/
|
105
|
+
"https://docs.zenml.io/getting-started/deploying-zenml/secret-management"
|
106
106
|
)
|
107
107
|
continue
|
108
108
|
|
@@ -73,6 +73,7 @@ of any potential costs:
|
|
73
73
|
- An ECR repository registered as a [ZenML container registry](https://docs.zenml.io/stack-components/container-registries/aws).
|
74
74
|
- Sagemaker registered as a [ZenML orchestrator](https://docs.zenml.io/stack-components/orchestrators/sagemaker)
|
75
75
|
as well as a [ZenML step operator](https://docs.zenml.io/stack-components/step-operators/sagemaker).
|
76
|
+
- A CodeBuild project registered as a [ZenML image builder](https://docs.zenml.io/stack-components/image-builder/aws).
|
76
77
|
- An IAM user and IAM role with the minimum necessary permissions to access the
|
77
78
|
above resources.
|
78
79
|
- An AWS access key used to give access to ZenML to connect to the above
|
@@ -158,6 +159,26 @@ console.
|
|
158
159
|
"ecr:PutImage",
|
159
160
|
"ecr:GetAuthorizationToken",
|
160
161
|
],
|
162
|
+
"CloudBuild (Client)": [
|
163
|
+
"codebuild:CreateProject",
|
164
|
+
"codebuild:BatchGetBuilds",
|
165
|
+
],
|
166
|
+
"CloudBuild (Service)": [
|
167
|
+
"s3:GetObject",
|
168
|
+
"s3:GetObjectVersion",
|
169
|
+
"logs:CreateLogGroup",
|
170
|
+
"logs:CreateLogStream",
|
171
|
+
"logs:PutLogEvents",
|
172
|
+
"ecr:BatchGetImage",
|
173
|
+
"ecr:DescribeImages",
|
174
|
+
"ecr:BatchCheckLayerAvailability",
|
175
|
+
"ecr:GetDownloadUrlForLayer",
|
176
|
+
"ecr:InitiateLayerUpload",
|
177
|
+
"ecr:UploadLayerPart",
|
178
|
+
"ecr:CompleteLayerUpload",
|
179
|
+
"ecr:PutImage",
|
180
|
+
"ecr:GetAuthorizationToken",
|
181
|
+
],
|
161
182
|
"SageMaker (Client)": [
|
162
183
|
"sagemaker:CreatePipeline",
|
163
184
|
"sagemaker:StartPipelineExecution",
|
@@ -243,6 +264,7 @@ console.
|
|
243
264
|
param_ResourceName=f"zenml-{random_str(6).lower()}",
|
244
265
|
param_ZenMLServerURL=self.zenml_server_url,
|
245
266
|
param_ZenMLServerAPIToken=self.zenml_server_api_token,
|
267
|
+
param_CodeBuild="true",
|
246
268
|
)
|
247
269
|
# Encode the parameters as URL query parameters
|
248
270
|
query_params = "&".join([f"{k}={v}" for k, v in params.items()])
|
zenml/utils/archivable.py
CHANGED
@@ -15,11 +15,21 @@
|
|
15
15
|
|
16
16
|
import io
|
17
17
|
import tarfile
|
18
|
+
import zipfile
|
18
19
|
from abc import ABC, abstractmethod
|
19
20
|
from pathlib import Path
|
20
|
-
from typing import IO, Any, Dict
|
21
|
+
from typing import IO, Any, Dict, Optional
|
21
22
|
|
22
23
|
from zenml.io import fileio
|
24
|
+
from zenml.utils.enum_utils import StrEnum
|
25
|
+
|
26
|
+
|
27
|
+
class ArchiveType(StrEnum):
|
28
|
+
"""Archive types supported by the ZenML build context."""
|
29
|
+
|
30
|
+
TAR = "tar"
|
31
|
+
TAR_GZ = "tar.gz"
|
32
|
+
ZIP = "zip"
|
23
33
|
|
24
34
|
|
25
35
|
class Archivable(ABC):
|
@@ -81,52 +91,71 @@ class Archivable(ABC):
|
|
81
91
|
self._extra_files[file_destination.as_posix()] = f.read()
|
82
92
|
|
83
93
|
def write_archive(
|
84
|
-
self,
|
94
|
+
self,
|
95
|
+
output_file: IO[bytes],
|
96
|
+
archive_type: ArchiveType = ArchiveType.TAR_GZ,
|
85
97
|
) -> None:
|
86
98
|
"""Writes an archive of the build context to the given file.
|
87
99
|
|
88
100
|
Args:
|
89
101
|
output_file: The file to write the archive to.
|
90
|
-
|
102
|
+
archive_type: The type of archive to create.
|
91
103
|
"""
|
92
104
|
files = self.get_files()
|
93
105
|
extra_files = self.get_extra_files()
|
106
|
+
close_fileobj: Optional[Any] = None
|
107
|
+
fileobj: Any = output_file
|
94
108
|
|
95
|
-
if
|
96
|
-
|
97
|
-
|
98
|
-
# We don't use the builtin gzip functionality of the `tarfile`
|
99
|
-
# library as that one includes the tar filename and creation
|
100
|
-
# timestamp in the archive which causes the hash of the resulting
|
101
|
-
# file to be different each time. We use this hash to avoid
|
102
|
-
# duplicate uploads, which is why we pass empty values for filename
|
103
|
-
# and mtime here.
|
104
|
-
fileobj: Any = GzipFile(
|
105
|
-
filename="", mode="wb", fileobj=output_file, mtime=0.0
|
106
|
-
)
|
109
|
+
if archive_type == ArchiveType.ZIP:
|
110
|
+
fileobj = zipfile.ZipFile(output_file, "w", zipfile.ZIP_DEFLATED)
|
107
111
|
else:
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
112
|
+
if archive_type == ArchiveType.TAR_GZ:
|
113
|
+
from gzip import GzipFile
|
114
|
+
|
115
|
+
# We don't use the builtin gzip functionality of the `tarfile`
|
116
|
+
# library as that one includes the tar filename and creation
|
117
|
+
# timestamp in the archive which causes the hash of the resulting
|
118
|
+
# file to be different each time. We use this hash to avoid
|
119
|
+
# duplicate uploads, which is why we pass empty values for filename
|
120
|
+
# and mtime here.
|
121
|
+
close_fileobj = fileobj = GzipFile(
|
122
|
+
filename="", mode="wb", fileobj=output_file, mtime=0.0
|
123
|
+
)
|
124
|
+
fileobj = tarfile.open(mode="w", fileobj=fileobj)
|
125
|
+
|
126
|
+
try:
|
127
|
+
with fileobj as af:
|
128
|
+
for archive_path, file_path in files.items():
|
129
|
+
if archive_path in extra_files:
|
130
|
+
continue
|
131
|
+
if archive_type == ArchiveType.ZIP:
|
132
|
+
assert isinstance(af, zipfile.ZipFile)
|
133
|
+
af.write(file_path, arcname=archive_path)
|
119
134
|
else:
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
135
|
+
assert isinstance(af, tarfile.TarFile)
|
136
|
+
if info := af.gettarinfo(
|
137
|
+
file_path, arcname=archive_path
|
138
|
+
):
|
139
|
+
if info.isfile():
|
140
|
+
with open(file_path, "rb") as f:
|
141
|
+
af.addfile(info, f)
|
142
|
+
else:
|
143
|
+
af.addfile(info, None)
|
144
|
+
|
145
|
+
for archive_path, contents in extra_files.items():
|
146
|
+
contents_encoded = contents.encode("utf-8")
|
147
|
+
|
148
|
+
if archive_type == ArchiveType.ZIP:
|
149
|
+
assert isinstance(af, zipfile.ZipFile)
|
150
|
+
af.writestr(archive_path, contents_encoded)
|
151
|
+
else:
|
152
|
+
assert isinstance(af, tarfile.TarFile)
|
153
|
+
info = tarfile.TarInfo(archive_path)
|
154
|
+
info.size = len(contents_encoded)
|
155
|
+
af.addfile(info, io.BytesIO(contents_encoded))
|
156
|
+
finally:
|
157
|
+
if close_fileobj:
|
158
|
+
close_fileobj.close()
|
130
159
|
|
131
160
|
output_file.seek(0)
|
132
161
|
|
zenml/utils/code_utils.py
CHANGED
@@ -25,7 +25,7 @@ from zenml.client import Client
|
|
25
25
|
from zenml.io import fileio
|
26
26
|
from zenml.logger import get_logger
|
27
27
|
from zenml.utils import source_utils, string_utils
|
28
|
-
from zenml.utils.archivable import Archivable
|
28
|
+
from zenml.utils.archivable import Archivable, ArchiveType
|
29
29
|
|
30
30
|
if TYPE_CHECKING:
|
31
31
|
from git.repo.base import Repo
|
@@ -152,15 +152,19 @@ class CodeArchive(Archivable):
|
|
152
152
|
return all_files
|
153
153
|
|
154
154
|
def write_archive(
|
155
|
-
self,
|
155
|
+
self,
|
156
|
+
output_file: IO[bytes],
|
157
|
+
archive_type: ArchiveType = ArchiveType.TAR_GZ,
|
156
158
|
) -> None:
|
157
159
|
"""Writes an archive of the build context to the given file.
|
158
160
|
|
159
161
|
Args:
|
160
162
|
output_file: The file to write the archive to.
|
161
|
-
|
163
|
+
archive_type: The type of archive to create.
|
162
164
|
"""
|
163
|
-
super().write_archive(
|
165
|
+
super().write_archive(
|
166
|
+
output_file=output_file, archive_type=archive_type
|
167
|
+
)
|
164
168
|
archive_size = os.path.getsize(output_file.name)
|
165
169
|
if archive_size > 20 * 1024 * 1024:
|
166
170
|
logger.warning(
|
zenml/utils/docker_utils.py
CHANGED
@@ -266,6 +266,14 @@ def push_image(
|
|
266
266
|
logger.info("Finished pushing Docker image.")
|
267
267
|
|
268
268
|
image_name_without_tag, _ = image_name.rsplit(":", maxsplit=1)
|
269
|
+
|
270
|
+
image = docker_client.images.get(image_name)
|
271
|
+
repo_digests: List[str] = image.attrs["RepoDigests"]
|
272
|
+
|
273
|
+
for digest in repo_digests:
|
274
|
+
if digest.startswith(f"{image_name_without_tag}@"):
|
275
|
+
return digest
|
276
|
+
|
269
277
|
for info in reversed(aux_info):
|
270
278
|
try:
|
271
279
|
repo_digest = info["Digest"]
|
@@ -304,6 +312,7 @@ def get_image_digest(image_name: str) -> Optional[str]:
|
|
304
312
|
|
305
313
|
image = docker_client.images.get(image_name)
|
306
314
|
repo_digests = image.attrs["RepoDigests"]
|
315
|
+
|
307
316
|
if len(repo_digests) == 1:
|
308
317
|
return cast(str, repo_digests[0])
|
309
318
|
else:
|
@@ -4062,7 +4062,7 @@ class RestZenStore(BaseZenStore):
|
|
4062
4062
|
"you should use a service account API key to authenticate to "
|
4063
4063
|
"the server instead of temporary CLI login credentials. For "
|
4064
4064
|
"more information, see "
|
4065
|
-
"https://docs.zenml.io/how-to/connecting-to-zenml/connect-with-a-service-account"
|
4065
|
+
"https://docs.zenml.io/how-to/project-setup-and-management/connecting-to-zenml/connect-with-a-service-account"
|
4066
4066
|
)
|
4067
4067
|
|
4068
4068
|
if api_key is not None:
|
{zenml_nightly-0.70.0.dev20241202.dist-info → zenml_nightly-0.70.0.dev20241204.dist-info}/RECORD
RENAMED
@@ -6,7 +6,7 @@ RELEASE_NOTES.md,sha256=DleauURHESDrTrcVzCVLqPiSM9NIAk5vldvEFMc7qlk,389375
|
|
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=-A-FM4tTGBeZdWuioST8Yb1XGa9Iixr9mH9R98y-uNI,19
|
10
10
|
zenml/__init__.py,sha256=SkMObQA41ajqdZqGErN00S1Vf3KAxpLvbZ-OBy5uYoo,2130
|
11
11
|
zenml/actions/__init__.py,sha256=mrt6wPo73iKRxK754_NqsGyJ3buW7RnVeIGXr1xEw8Y,681
|
12
12
|
zenml/actions/base_action.py,sha256=UcaHev6BTuLDwuswnyaPjdA8AgUqB5xPZ-lRtuvf2FU,25553
|
@@ -33,11 +33,11 @@ zenml/artifacts/external_artifact_config.py,sha256=P172p0JOu8Xx1F8RCQut1dnRpt5lp
|
|
33
33
|
zenml/artifacts/preexisting_data_materializer.py,sha256=dcahDcHUD3Lvn0-6zE2BG84bkyo_ydAgzBWxtbyJJZQ,3325
|
34
34
|
zenml/artifacts/unmaterialized_artifact.py,sha256=JNPKq_sNifQx5wP8jEw7TGBEi26zwKirPGlWX9uxbJI,1300
|
35
35
|
zenml/artifacts/utils.py,sha256=k4BNl03CQhvC4BMFeXk6TBcF47ca7AtQcVh6t_fn7xY,35132
|
36
|
-
zenml/cli/__init__.py,sha256=
|
36
|
+
zenml/cli/__init__.py,sha256=d239fhufu48sglF4_WJpcvfWTAjHblL9NR75yjQ7AXw,75666
|
37
37
|
zenml/cli/annotator.py,sha256=tEdducGdFn57DFLJVZQ-MyXH1auTGFueRmDc78N-vPQ,6970
|
38
38
|
zenml/cli/artifact.py,sha256=7lsAS52DroBTFkFWxkyb-lIDOGP5jPL_Se_RDG_2jgg,9564
|
39
39
|
zenml/cli/authorized_device.py,sha256=_1PzE3BM2SmwtuzRliEMStvbBRKWQmg_lbwCRtn8dBg,4324
|
40
|
-
zenml/cli/base.py,sha256=
|
40
|
+
zenml/cli/base.py,sha256=kFG3d6IaYyrJXYgafsJNDJmIPIKL6rY_ScT6AjVppE0,28243
|
41
41
|
zenml/cli/cli.py,sha256=Pnq468IZ4oqzluA_gZ5PsrdnSPEyHcasIH-xI1_8Y_Q,5454
|
42
42
|
zenml/cli/code_repository.py,sha256=7DNJMc7RL8GaU8DwX0mDSViLH9oclqhsX2AU-VWOKb8,6979
|
43
43
|
zenml/cli/config.py,sha256=UI_j0a_zRgEUd2q0zuOi4UgbjiCYjMJ_Y9iSg-wi8Oo,2768
|
@@ -48,7 +48,7 @@ zenml/cli/integration.py,sha256=O-JbkDMyJfwrzwm--Ddh41siLZ8lDuXwIiCaZvjdCt4,1620
|
|
48
48
|
zenml/cli/login.py,sha256=xZdDiTbFiHvzvd5o08VRL01Oim5-0NSeKlxpBayAvss,35232
|
49
49
|
zenml/cli/model.py,sha256=hXRXkMUOOf0eTo07WnQHNeeDDQLiH0m76E-xypFLYF0,22993
|
50
50
|
zenml/cli/model_registry.py,sha256=cNAZ3iBa0ofdMD8inQil05yLJq7rWKgadSKMmVdlHOQ,20806
|
51
|
-
zenml/cli/pipeline.py,sha256
|
51
|
+
zenml/cli/pipeline.py,sha256=ZK_J_GE1OGZkLCBsdTiHnSh7BBp29QiigtxvQNifxAc,19228
|
52
52
|
zenml/cli/secret.py,sha256=2WxDYg6iodnAVSbVJQvQEYWEgcy0oytcSBVnnyN0JOw,20135
|
53
53
|
zenml/cli/served_model.py,sha256=3w1UcAbg6Geu37fr7ej1_81GBCt3fF7j3Ge799YE4Mc,14974
|
54
54
|
zenml/cli/server.py,sha256=vmNThi0nwNQoNAmLkA_kwcudoNrqR2wVcWNA7y7vfSI,25519
|
@@ -82,7 +82,7 @@ zenml/config/pipeline_spec.py,sha256=uWpiIfznJvXAiKs1yMIUDT1h1tYEFNO-RDVTYcIv9CE
|
|
82
82
|
zenml/config/resource_settings.py,sha256=bl3xahx--XS9p1CsTDSuvkZX9Oxb-Zj85UpefR8WrYs,3899
|
83
83
|
zenml/config/retry_config.py,sha256=4UH1xqw0G6fSEbXSNKfmiFEkwadxQef9BGMe3JBm6NI,929
|
84
84
|
zenml/config/schedule.py,sha256=QdezLjIONnEAVPrWFekbetNvkclx_5eJyhza0Prl5Y0,4944
|
85
|
-
zenml/config/secret_reference_mixin.py,sha256=
|
85
|
+
zenml/config/secret_reference_mixin.py,sha256=6DOgOH_w1_coNs1NasMjY8SOv0MqzWQZxwrWsfncsgs,5862
|
86
86
|
zenml/config/secrets_store_config.py,sha256=y05zqyQhr_DGrs3IfBGa_FRoZ043hSYRT5wzrx-zHTU,2818
|
87
87
|
zenml/config/server_config.py,sha256=na4muBGzT25vdsaHvy69xSzYEPBCh7PZViZxVGQnjgc,25744
|
88
88
|
zenml/config/settings_resolver.py,sha256=PR9BRm_x1dy7nVKa9UqpeFdck8IEATSW6aWT8FKd-DI,4278
|
@@ -126,8 +126,8 @@ zenml/hooks/__init__.py,sha256=lEifDzp1dkcatoBpCmmRNOEAh0vgrqtQQP_GH_4z1pk,1037
|
|
126
126
|
zenml/hooks/alerter_hooks.py,sha256=XJPhrnVimOayD2VjYBG_5D6R6sZ08rytwDHvvMD3lNI,3042
|
127
127
|
zenml/hooks/hook_validators.py,sha256=35VuolTruFoj6GUQf8n3PpQVMu54dp6apIGPui4FZu4,2516
|
128
128
|
zenml/image_builders/__init__.py,sha256=WVBxXTCiyhVhvGezovS5O-ypwC8V0YRihCOacd7i5iQ,1210
|
129
|
-
zenml/image_builders/base_image_builder.py,sha256
|
130
|
-
zenml/image_builders/build_context.py,sha256=
|
129
|
+
zenml/image_builders/base_image_builder.py,sha256=yFmtn8Y6PdNxie3F51tbpMf8zBhNRnNGr-ejTCEcq4Q,5491
|
130
|
+
zenml/image_builders/build_context.py,sha256=k38xERo4IXU9KKM-Zi5A2HzIp1pUZeWnhCPuRPSjkEQ,5864
|
131
131
|
zenml/image_builders/local_image_builder.py,sha256=R_zMpERtUCWLLDZg9kXuAQSWLtin1ve_rxpbUBiym7s,6448
|
132
132
|
zenml/integrations/README.md,sha256=hFIZwjsAItHjvDWVBqGSF-ZAeMsFR2GKX1Axl2g1Bz0,6190
|
133
133
|
zenml/integrations/__init__.py,sha256=GiLRzSCu1O9Jg5NSCRKVDWLIXtKuc90ozntqYjUHo08,4905
|
@@ -142,13 +142,16 @@ zenml/integrations/argilla/annotators/__init__.py,sha256=QjRMxIQ-skulcLN94GuHuuk
|
|
142
142
|
zenml/integrations/argilla/annotators/argilla_annotator.py,sha256=aIA5rcwfOYLnUVp2c_aaTAUnVW8GV9gP8myze_jY_qY,15586
|
143
143
|
zenml/integrations/argilla/flavors/__init__.py,sha256=MTogEeiZ1k7nLzGKok3azK_VhKUAJl0GL6OQvsvMlZo,917
|
144
144
|
zenml/integrations/argilla/flavors/argilla_annotator_flavor.py,sha256=NAy6QKLWYXHPTCoWc9RIovsngcRGMwseu3rdNjiCpo4,4473
|
145
|
-
zenml/integrations/aws/__init__.py,sha256=
|
145
|
+
zenml/integrations/aws/__init__.py,sha256=x-Ym8FlmeX7bAjL7zBxUp40U11IVZGyfcClRIeEydlI,2489
|
146
146
|
zenml/integrations/aws/container_registries/__init__.py,sha256=fOwo84MiaX_7XhNQEXeyVh8AyOlcIl6nSu_ig68GkSs,827
|
147
147
|
zenml/integrations/aws/container_registries/aws_container_registry.py,sha256=SCxKj_w79Ka0LdxYOdDmaXitketTQRDHrQ4XQ0_f4hs,6091
|
148
|
-
zenml/integrations/aws/flavors/__init__.py,sha256
|
148
|
+
zenml/integrations/aws/flavors/__init__.py,sha256=XYL9fpwKzeFfHCjakU0iJ3SyHVRJk63QT7luOy9Giek,1480
|
149
149
|
zenml/integrations/aws/flavors/aws_container_registry_flavor.py,sha256=GIDLOySz1zF08YSkmKIj89TxBqSLWueXLAHyxYwm-NI,4169
|
150
|
+
zenml/integrations/aws/flavors/aws_image_builder_flavor.py,sha256=XobJOw5ymbY22i7YHWGYOKDQoJQAqTeMIfvkADt-DDc,5343
|
150
151
|
zenml/integrations/aws/flavors/sagemaker_orchestrator_flavor.py,sha256=UyHXFP9rn9DQ-Erd9Rtqun9GTcp3Rftbn2a9Xysh_TU,12826
|
151
152
|
zenml/integrations/aws/flavors/sagemaker_step_operator_flavor.py,sha256=OnNokixzGvOTBoZJQ5TDG3k4FFsP1pJmxbiij2VLW4s,5978
|
153
|
+
zenml/integrations/aws/image_builders/__init__.py,sha256=91hgH1OphG2i-vk-G8N4yKBFIzK89Wu7BK4-T5yOA7E,786
|
154
|
+
zenml/integrations/aws/image_builders/aws_image_builder.py,sha256=UcPYYYjJjfsicY3hV4OZeJt552AVmwPZPlv-AsG1g1I,11489
|
152
155
|
zenml/integrations/aws/orchestrators/__init__.py,sha256=Wh0Fhtt_uo6YrkvXY9kL0M478FL7XpapjoFreUZbgUg,794
|
153
156
|
zenml/integrations/aws/orchestrators/sagemaker_orchestrator.py,sha256=OlnXr_KTWE8fOyO6bNmsCbRdRaCPqWGrUEX4gyVbD80,26801
|
154
157
|
zenml/integrations/aws/orchestrators/sagemaker_orchestrator_entrypoint_config.py,sha256=WXCWdVojIZxx5_3-g1T95S2vsJ-RLNGcp-V409wgme0,1555
|
@@ -270,7 +273,7 @@ zenml/integrations/gcp/google_credentials_mixin.py,sha256=bPy3JYCCcyuTmPiVFqbY81
|
|
270
273
|
zenml/integrations/gcp/image_builders/__init__.py,sha256=2IvTL6U2YpUoxGQXeXew-6WFoL5hHIxkqr4DaA5Ez9w,786
|
271
274
|
zenml/integrations/gcp/image_builders/gcp_image_builder.py,sha256=dNpMJa1TITUOHSn5nj1gWTFwVNmvWz321A_JoTMOqCM,9114
|
272
275
|
zenml/integrations/gcp/orchestrators/__init__.py,sha256=6xLFJKZKQk73fHPF-XdpbQO87zjQNGTsNHjJjLfG_Kg,805
|
273
|
-
zenml/integrations/gcp/orchestrators/vertex_orchestrator.py,sha256=
|
276
|
+
zenml/integrations/gcp/orchestrators/vertex_orchestrator.py,sha256=7O-Wh-LTGKOWpjARtbE0eWG_vpq6eSI3UERgUoNwzHA,36923
|
274
277
|
zenml/integrations/gcp/service_connectors/__init__.py,sha256=fdydawaor8KAtMYvRZieiTuA1i5QATxXXgI-yV1lsn8,788
|
275
278
|
zenml/integrations/gcp/service_connectors/gcp_service_connector.py,sha256=E0OIF_6Godw1GCOsiYB_RvqpIZhPbnsY7WqTuIZ90Ec,94875
|
276
279
|
zenml/integrations/gcp/step_operators/__init__.py,sha256=iPkob2LtPIQ-OHszhbNz_ojhoovL6SprmTx37It4EJ8,808
|
@@ -325,7 +328,7 @@ zenml/integrations/kaniko/__init__.py,sha256=r40dq-xp9ji2xtfymwffryglCmsOZe2g1_9
|
|
325
328
|
zenml/integrations/kaniko/flavors/__init__.py,sha256=PpI7yUpjgLwwAi1ma5uTGihG4zUWxURiRTpHoHEXBIw,865
|
326
329
|
zenml/integrations/kaniko/flavors/kaniko_image_builder_flavor.py,sha256=iRICgO_f9RF1XOp7bO8qjmHm83v2NYqoJWorHZKhVzE,5080
|
327
330
|
zenml/integrations/kaniko/image_builders/__init__.py,sha256=X-ydYoG_6t4OWXDuCgfbugtVvPeOc97Kwf8RQ0KcPiU,787
|
328
|
-
zenml/integrations/kaniko/image_builders/kaniko_image_builder.py,sha256=
|
331
|
+
zenml/integrations/kaniko/image_builders/kaniko_image_builder.py,sha256=N4rLjIHYdw8v1CZvJP9G8RYpaMbERhzDyLP0UcEO3JA,13721
|
329
332
|
zenml/integrations/kubeflow/__init__.py,sha256=ab3v3sJBwo09vbyI2UQ5SnKfL0C9j8hrxR5ji-Xfswo,1791
|
330
333
|
zenml/integrations/kubeflow/flavors/__init__.py,sha256=l560A0oIpYeTpVVrdrVVYj-2-Y5CeyCSQMfwErZROxY,878
|
331
334
|
zenml/integrations/kubeflow/flavors/kubeflow_orchestrator_flavor.py,sha256=b7W4oASHLYN9o2n__-W3zajb_MXhPaY0UutecsW0Xw4,10381
|
@@ -334,7 +337,7 @@ zenml/integrations/kubeflow/orchestrators/kubeflow_orchestrator.py,sha256=H4rpm3
|
|
334
337
|
zenml/integrations/kubeflow/orchestrators/local_deployment_utils.py,sha256=qszoOdvBpgIp40XkncphXAr9dRKnyZzGiz2mJ56bYmw,15448
|
335
338
|
zenml/integrations/kubernetes/__init__.py,sha256=UzU5CaogX6ud5ChCK8JSZ06eoW18eIudbgntgPijYSc,1853
|
336
339
|
zenml/integrations/kubernetes/flavors/__init__.py,sha256=a5gU45qCj3FkLwl_uVjlIkL_2F5DHk-w1gdcZrvVjBI,1266
|
337
|
-
zenml/integrations/kubernetes/flavors/kubernetes_orchestrator_flavor.py,sha256=
|
340
|
+
zenml/integrations/kubernetes/flavors/kubernetes_orchestrator_flavor.py,sha256=al3EwEhwbG2uCHpkfC_4J-nOPCNW-LdJ568X0hPAvxE,8312
|
338
341
|
zenml/integrations/kubernetes/flavors/kubernetes_step_operator_flavor.py,sha256=ILN-H4cl7z3i4ltb4UBs55wbtIo871b4ib28pYkQoyQ,5605
|
339
342
|
zenml/integrations/kubernetes/orchestrators/__init__.py,sha256=TJID3OTieZBox36WpQpzD0jdVRA_aZVcs_bNtfXS8ik,811
|
340
343
|
zenml/integrations/kubernetes/orchestrators/kube_utils.py,sha256=0Cj1RoiuXL4oACnfyzEpOiCTnHt_YoF5ml3bhobyOEg,12195
|
@@ -369,7 +372,7 @@ zenml/integrations/lightgbm/materializers/lightgbm_booster_materializer.py,sha25
|
|
369
372
|
zenml/integrations/lightgbm/materializers/lightgbm_dataset_materializer.py,sha256=q1L1cke0j9hYNbruPxaWDDgp0thNPNHZA0gH4gyfugI,2856
|
370
373
|
zenml/integrations/lightning/__init__.py,sha256=Wyj8P7ihX8DpOO4bmggM_Pq3HDwU02fjdB51s5sHJSA,1521
|
371
374
|
zenml/integrations/lightning/flavors/__init__.py,sha256=Ma949QQTTYw1Zw1fo6zSUXomXfXQRTPHY9N2wZGweMA,883
|
372
|
-
zenml/integrations/lightning/flavors/lightning_orchestrator_flavor.py,sha256=
|
375
|
+
zenml/integrations/lightning/flavors/lightning_orchestrator_flavor.py,sha256=U6ewra4C8cSrnRQTlEJrY2ouR4XJ3ShnAg1fDoC9fFQ,5259
|
373
376
|
zenml/integrations/lightning/orchestrators/__init__.py,sha256=rUaCQPcbpAPy57jx8ZqEOjTJv8zigT_nCPrMdfQJ8OU,1030
|
374
377
|
zenml/integrations/lightning/orchestrators/lightning_orchestrator.py,sha256=6XGg-cKKRNCot6DI9ub4oZWF4_K41OHs1lT90FL8VsM,24712
|
375
378
|
zenml/integrations/lightning/orchestrators/lightning_orchestrator_entrypoint.py,sha256=VHVXZ6jZ0URLhwaIPMyDmrnrBpYvzDnqQdIoSVM9m6E,11506
|
@@ -403,8 +406,8 @@ zenml/integrations/modal/step_operators/__init__.py,sha256=8NYCXe7aNPnldCI9IjcHz
|
|
403
406
|
zenml/integrations/modal/step_operators/modal_step_operator.py,sha256=J2HiNaGnlP6kDLBnQKz8mQKaoaQLitFkjHhOP_XRWgI,8543
|
404
407
|
zenml/integrations/neptune/__init__.py,sha256=FUaMxVC9uPryIY7reWdzfMcMdsf5T3HjBZ1QjpjEX4Q,1717
|
405
408
|
zenml/integrations/neptune/experiment_trackers/__init__.py,sha256=DJi7lk7NXYrRg3VGPPSEsMycKECDfXL-h2V0A0r7z8Y,833
|
406
|
-
zenml/integrations/neptune/experiment_trackers/neptune_experiment_tracker.py,sha256=
|
407
|
-
zenml/integrations/neptune/experiment_trackers/run_state.py,sha256=
|
409
|
+
zenml/integrations/neptune/experiment_trackers/neptune_experiment_tracker.py,sha256=hqEOgyBEQhjcnxvgw2oC2WZ0FAv1ez4VAqa_fJAHeCw,3716
|
410
|
+
zenml/integrations/neptune/experiment_trackers/run_state.py,sha256=W-3mnjoVT-lZNVxGm4982jvMYbxC9WNiQ9_0vd4f9SM,5411
|
408
411
|
zenml/integrations/neptune/flavors/__init__.py,sha256=NzORpmtI3Vu7yH1maj5pYd_2gQoN4QR2ZZLy1uPr6uw,975
|
409
412
|
zenml/integrations/neptune/flavors/neptune_experiment_tracker_flavor.py,sha256=dGlRmnPjG5qG1RlcpEmpANDKAigh1N4hE86jvmaC968,3634
|
410
413
|
zenml/integrations/neptune/neptune_constants.py,sha256=-VddhrALS1HMBhGtFiGDKaRahC-qhG0JAF2zAuc3lMM,746
|
@@ -448,7 +451,7 @@ zenml/integrations/pytorch/utils.py,sha256=IbJTsMb5zYcGlxZj0xKIFQuPHdnizWMd_zmeM
|
|
448
451
|
zenml/integrations/pytorch_lightning/__init__.py,sha256=tk1Io7xI6HbwHkUauvXMs9xQRb1oploneHCmRIcbeAE,1177
|
449
452
|
zenml/integrations/pytorch_lightning/materializers/__init__.py,sha256=zZsRri9X8YMJy4_h-8_Uss5RHjkFkd-RGF9zKnd713Q,814
|
450
453
|
zenml/integrations/pytorch_lightning/materializers/pytorch_lightning_materializer.py,sha256=dmNXbGLAzbiaFEa2K9ctOiOoyuQ2GNVsDfgcvdV14Is,1245
|
451
|
-
zenml/integrations/registry.py,sha256=
|
454
|
+
zenml/integrations/registry.py,sha256=L43KXOAW5vi736Ox7mJJgQN3lVrtbf0TwUHA-Gao31o,7164
|
452
455
|
zenml/integrations/s3/__init__.py,sha256=Q7v4V4YuPDcGwHVkbJSX6MDBJoaaC65A16Gy2PQ4xLc,2215
|
453
456
|
zenml/integrations/s3/artifact_stores/__init__.py,sha256=xK8pbJIg66f7BXlJfyCKVRgxxD7KmdAxiuXGtFvenVQ,793
|
454
457
|
zenml/integrations/s3/artifact_stores/s3_artifact_store.py,sha256=0KD2b2-Fi3w5I4tnVh2XnmczwIcsNIjkOHCWGRO3KZE,18059
|
@@ -478,7 +481,7 @@ zenml/integrations/sklearn/materializers/__init__.py,sha256=vHIx7njuVcP_kGbyECgJ
|
|
478
481
|
zenml/integrations/sklearn/materializers/sklearn_materializer.py,sha256=IaE8DS9L2gjfRVv8RT8p7ls7cJJ5qzt6hRgdpL6pp20,1562
|
479
482
|
zenml/integrations/skypilot/__init__.py,sha256=PzNuJJykzfu34pTC4kSD18ARyGysuhzEW8oLTm4oHuo,612
|
480
483
|
zenml/integrations/skypilot/flavors/__init__.py,sha256=PzNuJJykzfu34pTC4kSD18ARyGysuhzEW8oLTm4oHuo,612
|
481
|
-
zenml/integrations/skypilot/flavors/skypilot_orchestrator_base_vm_config.py,sha256=
|
484
|
+
zenml/integrations/skypilot/flavors/skypilot_orchestrator_base_vm_config.py,sha256=UPHfsB75CDZ8ecxxlL8aTo3IGIVuCAU_USBHzhULMuc,6675
|
482
485
|
zenml/integrations/skypilot/orchestrators/__init__.py,sha256=elo6QiImzys1m_bgu96U1HCVRepHQI1m7Jgqn6aEJ4Q,844
|
483
486
|
zenml/integrations/skypilot/orchestrators/skypilot_base_vm_orchestrator.py,sha256=Oxd_8MEDd5JFovPgHE5xWreLTBQhTJZPA1nLYpvgIa0,14290
|
484
487
|
zenml/integrations/skypilot/orchestrators/skypilot_orchestrator_entrypoint.py,sha256=5sq04vu2ArsyW56wvH8CRLG8kmeaSkPYPzirGGe7mds,9737
|
@@ -595,7 +598,7 @@ zenml/login/pro/utils.py,sha256=PnQ90eiqijY-VKqd974HzCtAosrHhzOxL1NpqZbpE5M,5355
|
|
595
598
|
zenml/login/web_login.py,sha256=NkFKnPj8qDZAb2FfDW8ZvkWrGiurf7YiYEEs5m844aM,9037
|
596
599
|
zenml/materializers/__init__.py,sha256=maME5CxKcgOkIFwG_iARt1-tuW8u8ZhTzfw50uyv_BA,1667
|
597
600
|
zenml/materializers/base_materializer.py,sha256=M4hwkw7PB0LskCE92r-S35011l7DlFemit-EuUCW3Nc,14002
|
598
|
-
zenml/materializers/built_in_materializer.py,sha256=
|
601
|
+
zenml/materializers/built_in_materializer.py,sha256=AFrCW_LErey2ws6vfLTbBP5gx3IFi05YPEmT4BA-CzY,15668
|
599
602
|
zenml/materializers/cloudpickle_materializer.py,sha256=x8a6jEMTky6N2YVHiwrnGWSfVJUpiy-4kQsD2Aqj_E0,4837
|
600
603
|
zenml/materializers/materializer_registry.py,sha256=ic-aWhJ2Ex9F_rml2dDVAxhRfW3nd71QMxzfTPP6BIM,4002
|
601
604
|
zenml/materializers/numpy_materializer.py,sha256=OLcHF9Z0tAqQ_U8TraA0vGmZjHoT7eT_XevncIutt0M,1715
|
@@ -674,7 +677,7 @@ zenml/models/v2/misc/service_connector_type.py,sha256=jGJLvIsBB87ZIEeZCLLueUf28H
|
|
674
677
|
zenml/models/v2/misc/stack_deployment.py,sha256=PgQevLjvHTpsecY_rzrXesr7jiGms7rH_QbFtI2ZIaA,3768
|
675
678
|
zenml/models/v2/misc/user_auth.py,sha256=1-yafNA9qK4wL8ToROjaklTVI7Mj9va0t80_4wm7w3U,6988
|
676
679
|
zenml/orchestrators/__init__.py,sha256=p4Y9Ni7Lp33fZ6UrjgI7qu-rrg8LrlyafCM-K1WC81w,1961
|
677
|
-
zenml/orchestrators/base_orchestrator.py,sha256=
|
680
|
+
zenml/orchestrators/base_orchestrator.py,sha256=vQsMUhhZUX34EyJbYpXB4F0iPmrOHaVLtsKM0vuN1yE,12646
|
678
681
|
zenml/orchestrators/cache_utils.py,sha256=J5sMmgy-qRJVtTWt5hDjSAR6vPPulOhMJu0m-Y1onO8,4327
|
679
682
|
zenml/orchestrators/containerized_orchestrator.py,sha256=rdebgBW0Bk--JcHcT0NpLkAbyhY0VS5xO1uwWEgkLpA,3230
|
680
683
|
zenml/orchestrators/dag_runner.py,sha256=0F0zOy90ZHad_YUiwG_47JiH7KEVFQ5tLen0kGPvppk,6940
|
@@ -683,7 +686,7 @@ zenml/orchestrators/local/__init__.py,sha256=qlU91hgqGKeycw-Qntrn-iMuoMTaNrq-Rgf
|
|
683
686
|
zenml/orchestrators/local/local_orchestrator.py,sha256=VCVemtPtW1bXvEM80wgaqdmoXiPrVOTNITXJ2MauTaw,5505
|
684
687
|
zenml/orchestrators/local_docker/__init__.py,sha256=k8J68ydy6HmmvE9tWo32g761H8P_Dw4AxWNf4UMpsbs,669
|
685
688
|
zenml/orchestrators/local_docker/local_docker_orchestrator.py,sha256=kzxvmKwEi7ihXfeoopIUwipSorvpB4Lw2pdCAOcZaZ0,9190
|
686
|
-
zenml/orchestrators/output_utils.py,sha256=
|
689
|
+
zenml/orchestrators/output_utils.py,sha256=01vqke1ZfmfuLpgxNerF-QL2wA0VPv1zUdvlMw0OwUY,3508
|
687
690
|
zenml/orchestrators/publish_utils.py,sha256=oLvcjCx_WT3_RITB86WNEaUe_qMsPMTD_warAvjS2dA,4752
|
688
691
|
zenml/orchestrators/step_launcher.py,sha256=iSrp6X-fIfuqCBS4zCgHLKlV2P08lFPf7wwBjT69LRA,17922
|
689
692
|
zenml/orchestrators/step_run_utils.py,sha256=N1_Sd8q9i5u-uWqhTH-gssxf-XkF3vbSDMwu1byyCSk,20424
|
@@ -712,7 +715,7 @@ zenml/service_connectors/__init__.py,sha256=gIBAVUPBZtdO6JtEBCixy9YG4wZRA1mnaxaG
|
|
712
715
|
zenml/service_connectors/docker_service_connector.py,sha256=_6WPqYCcSUf8JPakipbkJRvaN2ghhY7zCr38WCHG0SI,13218
|
713
716
|
zenml/service_connectors/service_connector.py,sha256=HW8dTE826ZSD1vWQlqQRm8XYq08v7tDZQ8ORnJ5rTcE,55351
|
714
717
|
zenml/service_connectors/service_connector_registry.py,sha256=mCabyKAr7Y6bcAbIFXbir9YrHczDe1ZJ8Bks5bOQouk,9658
|
715
|
-
zenml/service_connectors/service_connector_utils.py,sha256=
|
718
|
+
zenml/service_connectors/service_connector_utils.py,sha256=x_8rxl2yQc8VvvaWYXyxUxVijo7CCdlnod0z-jd-vUk,18056
|
716
719
|
zenml/services/__init__.py,sha256=8aSLtYlX9EVLB1Se1I4dbhZdTqrjNrAfsn1d_RCc_nk,2800
|
717
720
|
zenml/services/container/__init__.py,sha256=dFHcmlXgNXjUaCR18oGQJ19-I_6f3UeAUURHjqldjTs,668
|
718
721
|
zenml/services/container/container_service.py,sha256=DJIK7DD53Q_mgZByM0oeIyAgkrwN12T5E3QCWjubkLs,18383
|
@@ -732,11 +735,11 @@ zenml/stack/authentication_mixin.py,sha256=sg7GkpB-Ao9Gsa7Po0jxMn-_mVYUB42etmspZ
|
|
732
735
|
zenml/stack/flavor.py,sha256=F60xxZaqsNRK51K1g-SIWAK9dFxRQXaIErtr3evQ-ng,9775
|
733
736
|
zenml/stack/flavor_registry.py,sha256=IL0fRrxxQJ9YkCYCeADP7nwWEQo4XBElJY4owMjKGbQ,6108
|
734
737
|
zenml/stack/stack.py,sha256=zpFQ7aOusTKBIwMG4B-chxISEranUo8tvlPu2tMUjPc,32905
|
735
|
-
zenml/stack/stack_component.py,sha256=
|
738
|
+
zenml/stack/stack_component.py,sha256=4V111uBLpmsPaNffaQS-fLuz163WFEjsmIFzb_lq7is,29497
|
736
739
|
zenml/stack/stack_validator.py,sha256=hWbvvGIeWLj6NwSsF4GCc6RAxAWvxHXTcBZL9nJvcak,3111
|
737
740
|
zenml/stack/utils.py,sha256=qHMFi8SVMSDFeZTFO4KkvaLUbF-l3B0_JZ5SSMxYrwI,6406
|
738
741
|
zenml/stack_deployments/__init__.py,sha256=-7593cQ_ZgRn774Ol-8AKXXQquIU4DSiaThVEr6TfWM,644
|
739
|
-
zenml/stack_deployments/aws_stack_deployment.py,sha256=
|
742
|
+
zenml/stack_deployments/aws_stack_deployment.py,sha256=FnkiSwSMiM9O8KVTQmGfIKjsp5RkOiO-AbOsr7cd3zE,12358
|
740
743
|
zenml/stack_deployments/azure_stack_deployment.py,sha256=E0PhlmC_2Urf_7k1U7EoOHU21CbhY_3jZG0wXO1NcWI,13032
|
741
744
|
zenml/stack_deployments/gcp_stack_deployment.py,sha256=RD9Z0cZicZexUyK2YE0855LHu_VGOrLUnzy-QnrBRnA,12596
|
742
745
|
zenml/stack_deployments/stack_deployment.py,sha256=hrupbDuIfI6YhzHcmxNLsfnS7Qu_Pgv_5didiyv0msk,7572
|
@@ -754,16 +757,16 @@ zenml/steps/step_invocation.py,sha256=ETfOaV-P4_iXGk9y1-xK54Kfg2QRYaGoj_jTyEYZfb
|
|
754
757
|
zenml/steps/utils.py,sha256=hEIOhxHp69WO-9YX6sBpZrVLK6fytqvdzhW5p1aB09M,18580
|
755
758
|
zenml/types.py,sha256=LhGWJ4t3nybBk1l9Ox3tqqHbTYSuCqhkRsL5FqO6yf4,1206
|
756
759
|
zenml/utils/__init__.py,sha256=jaMTbjm8tLYkaRoxlZ0Em4ye_ZHOHKgP2goPTTiYGUQ,797
|
757
|
-
zenml/utils/archivable.py,sha256=
|
760
|
+
zenml/utils/archivable.py,sha256=QuLe1IhyABTrE6Y0hAT3tKjaUCpcze5ffZ_RKoKtJwY,6549
|
758
761
|
zenml/utils/callback_registry.py,sha256=QBWdaraLAxBxi8DKbv9X1SUpTKDhhj-XE0JomB2Ax2Y,2411
|
759
762
|
zenml/utils/code_repository_utils.py,sha256=CobRYMYfP2yNoA0hcu_WRz5oAff_jY95oyLCHz4fDOo,4734
|
760
|
-
zenml/utils/code_utils.py,sha256=
|
763
|
+
zenml/utils/code_utils.py,sha256=y7_vmqYv_e11xekFjK7Dm4LkFu6SGl73tr2fVxBAK3s,11336
|
761
764
|
zenml/utils/cuda_utils.py,sha256=RR21m__Zs-OnI5n-veFUzWniZjwLSbalHE5QV3jK1Hw,1624
|
762
765
|
zenml/utils/daemon.py,sha256=GZ7Dx6GLHK04SR50wBxpKYmFhxPBfdLWxJiAWzJC6cM,11863
|
763
766
|
zenml/utils/dashboard_utils.py,sha256=JyT-rOsqipazmImXBB-UzCg0GJ3UNzVCFdMcQisInfQ,5379
|
764
767
|
zenml/utils/deprecation_utils.py,sha256=2cyeUeYas2OCcOcUJul2EGKd5zR_0KOjm6fKCshtFm0,6253
|
765
768
|
zenml/utils/dict_utils.py,sha256=i7KAaKrkaWA_cG5IvVfMnr0CwWlBJ7KAsGvP2wxjZI8,2667
|
766
|
-
zenml/utils/docker_utils.py,sha256=
|
769
|
+
zenml/utils/docker_utils.py,sha256=QvkKnvIYSKAhW7mErXwSaQ432-q1LAsLjo2YWSXD8Bk,13889
|
767
770
|
zenml/utils/downloaded_repository_context.py,sha256=S660PSSQ3dsNBA0qAj8ap_Thyw1n6x4VDcRWbCMDP2M,1502
|
768
771
|
zenml/utils/enum_utils.py,sha256=0fA0B9v9Wjutuqlu_owUoOit1utIw2UH5J6YHXSqhLU,1368
|
769
772
|
zenml/utils/env_utils.py,sha256=2--2DDUt3gPOvCNVyobBtAciikQ0OEXs5WWp7NvYuKo,5276
|
@@ -1230,7 +1233,7 @@ zenml/zen_stores/migrations/versions/ec6307720f92_simplify_model_version_links.p
|
|
1230
1233
|
zenml/zen_stores/migrations/versions/f3b3964e3a0f_add_oauth_devices.py,sha256=2CR4R-7Vx6j_AXxo-e5Guy6OX-ZnS47HSKSGfqlO-y0,3065
|
1231
1234
|
zenml/zen_stores/migrations/versions/f49904a80aa7_increase_length_of_artifact_table_sources.py,sha256=kLgfDUnQdAb5_SyFx3VKXDLC0YbuBKf9iXRDNeBin7Q,1618
|
1232
1235
|
zenml/zen_stores/migrations/versions/fbd7f18ced1e_increase_step_run_field_lengths.py,sha256=kn-ng5EHe_mmLfffIFbz7T59z-to3oMx8III_4wOsz4,1956
|
1233
|
-
zenml/zen_stores/rest_zen_store.py,sha256=
|
1236
|
+
zenml/zen_stores/rest_zen_store.py,sha256=WPgXQdeYUJ853tEKCzDkCHuPKnrwVxpXWQD6s7ypB3I,157484
|
1234
1237
|
zenml/zen_stores/schemas/__init__.py,sha256=vMb0Pyf94aMWZDWpPKuRaxNoMsTp9DZNKSQScm9Vd5I,4339
|
1235
1238
|
zenml/zen_stores/schemas/action_schemas.py,sha256=vNnDF4zRy0eWgNwtcU7yY0JXyqe4I3Nns2LHRHWwiDs,6293
|
1236
1239
|
zenml/zen_stores/schemas/api_key_schemas.py,sha256=pCvoTSXSHz-im6aRt-opSBnmIhw3wDRIsi-NJP5WtCQ,7243
|
@@ -1276,8 +1279,8 @@ zenml/zen_stores/secrets_stores/sql_secrets_store.py,sha256=Bq1djrUP9saoD7vECjS7
|
|
1276
1279
|
zenml/zen_stores/sql_zen_store.py,sha256=gq7hwCqXuvABUGHoo6J_fOdf4PGuN88BFWE84KK_-UM,408283
|
1277
1280
|
zenml/zen_stores/template_utils.py,sha256=EKYBgmDLTS_PSMWaIO5yvHPLiQvMqHcsAe6NUCrv-i4,9068
|
1278
1281
|
zenml/zen_stores/zen_store_interface.py,sha256=vf2gKBWfUUPtcGZC35oQB6pPNVzWVyQC8nWxVLjfrxM,92692
|
1279
|
-
zenml_nightly-0.70.0.
|
1280
|
-
zenml_nightly-0.70.0.
|
1281
|
-
zenml_nightly-0.70.0.
|
1282
|
-
zenml_nightly-0.70.0.
|
1283
|
-
zenml_nightly-0.70.0.
|
1282
|
+
zenml_nightly-0.70.0.dev20241204.dist-info/LICENSE,sha256=wbnfEnXnafPbqwANHkV6LUsPKOtdpsd-SNw37rogLtc,11359
|
1283
|
+
zenml_nightly-0.70.0.dev20241204.dist-info/METADATA,sha256=SsbWnr1H59o25vg7YOc1twHRrEODkGD23akgH9vanYU,21208
|
1284
|
+
zenml_nightly-0.70.0.dev20241204.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1285
|
+
zenml_nightly-0.70.0.dev20241204.dist-info/entry_points.txt,sha256=QK3ETQE0YswAM2mWypNMOv8TLtr7EjnqAFq1br_jEFE,43
|
1286
|
+
zenml_nightly-0.70.0.dev20241204.dist-info/RECORD,,
|
{zenml_nightly-0.70.0.dev20241202.dist-info → zenml_nightly-0.70.0.dev20241204.dist-info}/LICENSE
RENAMED
File without changes
|
{zenml_nightly-0.70.0.dev20241202.dist-info → zenml_nightly-0.70.0.dev20241204.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|