zenml-nightly 0.58.2.dev20240612__py3-none-any.whl → 0.58.2.dev20240614__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.
- README.md +22 -5
- RELEASE_NOTES.md +2 -2
- zenml/VERSION +1 -1
- zenml/cli/base.py +1 -1
- zenml/new/pipelines/run_utils.py +1 -1
- zenml/stack/flavor.py +14 -10
- zenml/utils/cloud_utils.py +3 -3
- zenml/utils/dashboard_utils.py +2 -2
- zenml/utils/package_utils.py +50 -0
- zenml/zen_server/cloud_utils.py +3 -3
- zenml/zen_server/feature_gate/zenml_cloud_feature_gate.py +1 -1
- zenml/zen_server/pipeline_deployment/utils.py +9 -1
- zenml/zen_server/rbac/zenml_cloud_rbac.py +4 -4
- {zenml_nightly-0.58.2.dev20240612.dist-info → zenml_nightly-0.58.2.dev20240614.dist-info}/METADATA +23 -6
- {zenml_nightly-0.58.2.dev20240612.dist-info → zenml_nightly-0.58.2.dev20240614.dist-info}/RECORD +18 -17
- {zenml_nightly-0.58.2.dev20240612.dist-info → zenml_nightly-0.58.2.dev20240614.dist-info}/LICENSE +0 -0
- {zenml_nightly-0.58.2.dev20240612.dist-info → zenml_nightly-0.58.2.dev20240614.dist-info}/WHEEL +0 -0
- {zenml_nightly-0.58.2.dev20240612.dist-info → zenml_nightly-0.58.2.dev20240614.dist-info}/entry_points.txt +0 -0
README.md
CHANGED
@@ -75,6 +75,14 @@
|
|
75
75
|
|
76
76
|
---
|
77
77
|
|
78
|
+
## ⭐️ Show Your Support
|
79
|
+
|
80
|
+
If you find ZenML helpful or interesting, please consider giving us a star on GitHub. Your support helps promote the project and lets others know that it's worth checking out.
|
81
|
+
|
82
|
+
Thank you for your support! 🌟
|
83
|
+
|
84
|
+
[](https://github.com/zenml-io/zenml/stargazers)
|
85
|
+
|
78
86
|
## 🤸 Quickstart
|
79
87
|
[](https://colab.research.google.com/github/zenml-io/zenml/blob/main/examples/quickstart/quickstart.ipynb)
|
80
88
|
|
@@ -206,10 +214,11 @@ enable collaborative features as the central MLOps interface for teams.
|
|
206
214
|
|
207
215
|
Currently, there are two main ways to deploy ZenML:
|
208
216
|
|
209
|
-
- **ZenML
|
210
|
-
|
211
|
-
These
|
212
|
-
the burden of server management from your end.
|
217
|
+
- **ZenML Pro**: [ZenML Pro](cloud.zenml.io/?utm_source=readme&utm_medium=referral_link&utm_campaign=cloud_promotion&utm_content=signup_link),
|
218
|
+
offers a SaaS version which comes with a control plane to create and manage multiple ZenML servers.
|
219
|
+
These servers are managed and maintained by ZenML’s dedicated team, alleviating
|
220
|
+
the burden of server management from your end. They also come with additional features like RBAC, a Model Control Plane
|
221
|
+
and [much more](https://zenml-io.gitbook.io/zenml-documentation/getting-started/zenml-pro.
|
213
222
|
- **Self-hosted deployment**: Alternatively, you have the flexibility to [deploy
|
214
223
|
ZenML on your own self-hosted environment](https://docs.zenml.io/getting-started/deploying-zenml#deploying-a-zenml-server).
|
215
224
|
This can be achieved through various methods, including using our CLI, Docker,
|
@@ -259,6 +268,14 @@ Or, if you
|
|
259
268
|
prefer, [open an issue](https://github.com/zenml-io/zenml/issues/new/choose) on
|
260
269
|
our GitHub repo.
|
261
270
|
|
271
|
+
## ⭐️ Show Your Support
|
272
|
+
|
273
|
+
If you find ZenML helpful or interesting, please consider giving us a star on GitHub. Your support helps promote the project and lets others know that it's worth checking out.
|
274
|
+
|
275
|
+
Thank you for your support! 🌟
|
276
|
+
|
277
|
+
[](https://github.com/zenml-io/zenml/stargazers)
|
278
|
+
|
262
279
|
## 📜 License
|
263
280
|
|
264
281
|
ZenML is distributed under the terms of the Apache License Version 2.0.
|
@@ -280,7 +297,7 @@ the Apache License Version 2.0.
|
|
280
297
|
·
|
281
298
|
<a href="https://github.com/zenml-io/zenml/issues">Report Bug</a>
|
282
299
|
·
|
283
|
-
<a href="https://zenml.io/cloud">Sign up for
|
300
|
+
<a href="https://zenml.io/cloud">Sign up for ZenML Pro</a>
|
284
301
|
·
|
285
302
|
<a href="https://www.zenml.io/blog">Read Blog</a>
|
286
303
|
·
|
RELEASE_NOTES.md
CHANGED
@@ -233,9 +233,9 @@ zenml up --legacy
|
|
233
233
|
|
234
234
|
Note that you can’t use both the new and old dashboard at the same time.
|
235
235
|
|
236
|
-
If you’re self-hosting ZenML instead of using ZenML
|
236
|
+
If you’re self-hosting ZenML instead of using ZenML Pro, you can specify which dashboard you want to use by setting the `ZENML_SERVER_USE_LEGACY_DASHBOARD` environment variable pre-deployment. Specifying a boolean value for this variable will determine which dashboard gets served for your deployment. (There’s no dynamic switching between dashboards allowed, so if you wish to change which dashboard is used for a deployed server, you’ll need to redeploy the server after updating the environment variable.)
|
237
237
|
|
238
|
-
If you’re using [ZenML
|
238
|
+
If you’re using [SaaS ZenML Pro](https://cloud.zenml.io/), your experience won’t change with this release and your use of the dashboard remains the same.
|
239
239
|
|
240
240
|
## What's Changed
|
241
241
|
* Add Comet to Experiment Trackers in TOC by @strickvl in https://github.com/zenml-io/zenml/pull/2637
|
zenml/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.58.2.
|
1
|
+
0.58.2.dev20240614
|
zenml/cli/base.py
CHANGED
@@ -87,7 +87,7 @@ ZENML_PROJECT_TEMPLATES = dict(
|
|
87
87
|
),
|
88
88
|
nlp=ZenMLProjectTemplateLocation(
|
89
89
|
github_url="zenml-io/template-nlp",
|
90
|
-
github_tag="2024.06.
|
90
|
+
github_tag="2024.06.12", # Make sure it is aligned with .github/workflows/update-templates-to-examples.yml
|
91
91
|
),
|
92
92
|
llm_finetuning=ZenMLProjectTemplateLocation(
|
93
93
|
github_url="zenml-io/template-llm-finetuning",
|
zenml/new/pipelines/run_utils.py
CHANGED
@@ -255,6 +255,6 @@ def _validate_new_version_requests(
|
|
255
255
|
)
|
256
256
|
if not is_cloud_model:
|
257
257
|
logger.info(
|
258
|
-
"Models can be viewed in the dashboard using ZenML
|
258
|
+
"Models can be viewed in the dashboard using ZenML Pro. Sign up "
|
259
259
|
"for a free trial at https://www.zenml.io/cloud/"
|
260
260
|
)
|
zenml/stack/flavor.py
CHANGED
@@ -26,6 +26,7 @@ from zenml.models import (
|
|
26
26
|
from zenml.models.v2.core.flavor import InternalFlavorRequest
|
27
27
|
from zenml.stack.stack_component import StackComponent, StackComponentConfig
|
28
28
|
from zenml.utils import source_utils
|
29
|
+
from zenml.utils.package_utils import is_latest_zenml_version
|
29
30
|
|
30
31
|
|
31
32
|
class Flavor:
|
@@ -187,16 +188,12 @@ class Flavor:
|
|
187
188
|
)
|
188
189
|
return model
|
189
190
|
|
190
|
-
def generate_default_docs_url(self
|
191
|
+
def generate_default_docs_url(self) -> str:
|
191
192
|
"""Generate the doc urls for all inbuilt and integration flavors.
|
192
193
|
|
193
194
|
Note that this method is not going to be useful for custom flavors,
|
194
195
|
which do not have any docs in the main zenml docs.
|
195
196
|
|
196
|
-
Args:
|
197
|
-
component_name: The name of the component for docs generation. Used
|
198
|
-
for legacy documentation before ZenML v0.34.0.
|
199
|
-
|
200
197
|
Returns:
|
201
198
|
The complete url to the zenml documentation
|
202
199
|
"""
|
@@ -204,11 +201,18 @@ class Flavor:
|
|
204
201
|
|
205
202
|
component_type = self.type.plural.replace("_", "-")
|
206
203
|
name = self.name.replace("_", "-")
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
204
|
+
|
205
|
+
try:
|
206
|
+
is_latest = is_latest_zenml_version()
|
207
|
+
except RuntimeError:
|
208
|
+
# We assume in error cases that we are on the latest version
|
209
|
+
is_latest = True
|
210
|
+
|
211
|
+
if is_latest:
|
212
|
+
base = "https://docs.zenml.io/"
|
213
|
+
else:
|
214
|
+
base = f"https://zenml-io.gitbook.io/zenml-legacy-documentation/v/{__version__}"
|
215
|
+
return f"{base}/stack-components/{component_type}/{name}"
|
212
216
|
|
213
217
|
def generate_default_sdk_docs_url(self) -> str:
|
214
218
|
"""Generate SDK docs url for a flavor.
|
zenml/utils/cloud_utils.py
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
12
12
|
# or implied. See the License for the specific language governing
|
13
13
|
# permissions and limitations under the License.
|
14
|
-
"""Utilities for ZenML
|
14
|
+
"""Utilities for ZenML Pro."""
|
15
15
|
|
16
16
|
from zenml.logger import get_logger
|
17
17
|
from zenml.models.v2.core.model_version import ModelVersionResponse
|
@@ -21,13 +21,13 @@ logger = get_logger(__name__)
|
|
21
21
|
|
22
22
|
|
23
23
|
def is_cloud_model_version(model_version: ModelVersionResponse) -> bool:
|
24
|
-
"""Check if a model version is from a ZenML
|
24
|
+
"""Check if a model version is from a ZenML Pro server.
|
25
25
|
|
26
26
|
Args:
|
27
27
|
model_version: The model version to check.
|
28
28
|
|
29
29
|
Returns:
|
30
|
-
True if the model version is from a ZenML
|
30
|
+
True if the model version is from a ZenML Pro server, else False.
|
31
31
|
"""
|
32
32
|
model_version_url = get_model_version_url(model_version.id)
|
33
33
|
if model_version_url:
|
zenml/utils/dashboard_utils.py
CHANGED
@@ -32,13 +32,13 @@ logger = get_logger(__name__)
|
|
32
32
|
|
33
33
|
|
34
34
|
def is_cloud_server(server_info: ServerModel) -> bool:
|
35
|
-
"""Checks whether the server info refers to a ZenML
|
35
|
+
"""Checks whether the server info refers to a ZenML Pro server.
|
36
36
|
|
37
37
|
Args:
|
38
38
|
server_info: Info of the server.
|
39
39
|
|
40
40
|
Returns:
|
41
|
-
Whether the server info refers to a ZenML
|
41
|
+
Whether the server info refers to a ZenML Pro server.
|
42
42
|
"""
|
43
43
|
return (
|
44
44
|
"organization_id" in server_info.metadata
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# Copyright (c) ZenML GmbH 2024. All Rights Reserved.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at:
|
6
|
+
#
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
12
|
+
# or implied. See the License for the specific language governing
|
13
|
+
# permissions and limitations under the License.
|
14
|
+
"""Utility functions for the package."""
|
15
|
+
|
16
|
+
import requests
|
17
|
+
from packaging import version
|
18
|
+
|
19
|
+
|
20
|
+
def is_latest_zenml_version() -> bool:
|
21
|
+
"""Checks if the currently running ZenML package is on the latest version.
|
22
|
+
|
23
|
+
Returns:
|
24
|
+
True in case the current running zenml code is the latest available version on PYPI, otherwise False.
|
25
|
+
|
26
|
+
Raises:
|
27
|
+
RuntimeError: In case something goe wrong
|
28
|
+
"""
|
29
|
+
from zenml import __version__
|
30
|
+
|
31
|
+
# Get the current version of the package
|
32
|
+
current_local_version = __version__
|
33
|
+
|
34
|
+
# Get the latest version from PyPI
|
35
|
+
try:
|
36
|
+
response = requests.get("https://pypi.org/pypi/zenml/json")
|
37
|
+
response.raise_for_status()
|
38
|
+
latest_published_version = response.json()["info"]["version"]
|
39
|
+
except Exception as e:
|
40
|
+
raise RuntimeError(
|
41
|
+
f"Failed to fetch the latest version from PyPI: {e}"
|
42
|
+
)
|
43
|
+
|
44
|
+
# Compare versions
|
45
|
+
if version.parse(latest_published_version) > version.parse(
|
46
|
+
current_local_version
|
47
|
+
):
|
48
|
+
return False
|
49
|
+
else:
|
50
|
+
return True
|
zenml/zen_server/cloud_utils.py
CHANGED
@@ -14,7 +14,7 @@ ZENML_CLOUD_RBAC_ENV_PREFIX = "ZENML_CLOUD_"
|
|
14
14
|
|
15
15
|
|
16
16
|
class ZenMLCloudConfiguration(BaseModel):
|
17
|
-
"""ZenML
|
17
|
+
"""ZenML Pro RBAC configuration."""
|
18
18
|
|
19
19
|
api_url: str
|
20
20
|
|
@@ -141,7 +141,7 @@ class ZenMLCloudSession:
|
|
141
141
|
response.raise_for_status()
|
142
142
|
except requests.HTTPError as e:
|
143
143
|
raise RuntimeError(
|
144
|
-
f"Failed while trying to contact the central zenml
|
144
|
+
f"Failed while trying to contact the central zenml pro "
|
145
145
|
f"service: {e}"
|
146
146
|
)
|
147
147
|
|
@@ -149,7 +149,7 @@ class ZenMLCloudSession:
|
|
149
149
|
|
150
150
|
@property
|
151
151
|
def session(self) -> requests.Session:
|
152
|
-
"""Authenticate to the ZenML
|
152
|
+
"""Authenticate to the ZenML Pro Management Plane.
|
153
153
|
|
154
154
|
Returns:
|
155
155
|
A requests session with the authentication token.
|
@@ -11,7 +11,7 @@
|
|
11
11
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
12
12
|
# or implied. See the License for the specific language governing
|
13
13
|
# permissions and limitations under the License.
|
14
|
-
"""ZenML
|
14
|
+
"""ZenML Pro implementation of the feature gate."""
|
15
15
|
|
16
16
|
from typing import Any, Dict
|
17
17
|
from uuid import UUID
|
@@ -7,6 +7,7 @@ from typing import List, Optional, Set, Tuple
|
|
7
7
|
from uuid import UUID
|
8
8
|
|
9
9
|
from fastapi import BackgroundTasks
|
10
|
+
from packaging import version
|
10
11
|
|
11
12
|
from zenml.config.pipeline_configurations import PipelineConfiguration
|
12
13
|
from zenml.config.pipeline_run_configuration import PipelineRunConfiguration
|
@@ -116,7 +117,14 @@ def run_pipeline(
|
|
116
117
|
stack=stack
|
117
118
|
)
|
118
119
|
|
119
|
-
|
120
|
+
if build.python_version:
|
121
|
+
version_info = version.parse(build.python_version)
|
122
|
+
python_version = f"{version_info.major}.{version_info.minor}"
|
123
|
+
else:
|
124
|
+
python_version = (
|
125
|
+
f"{sys.version_info.major}.{sys.version_info.minor}"
|
126
|
+
)
|
127
|
+
|
120
128
|
dockerfile = generate_dockerfile(
|
121
129
|
pypi_requirements=pypi_requirements,
|
122
130
|
apt_packages=apt_packages,
|
@@ -34,7 +34,7 @@ SERVER_ID = server_config().external_server_id
|
|
34
34
|
|
35
35
|
|
36
36
|
def _convert_to_cloud_resource(resource: Resource) -> str:
|
37
|
-
"""Convert a resource to a ZenML
|
37
|
+
"""Convert a resource to a ZenML Pro Management Plane resource.
|
38
38
|
|
39
39
|
Args:
|
40
40
|
resource: The resource to convert.
|
@@ -75,7 +75,7 @@ def _convert_from_cloud_resource(cloud_resource: str) -> Resource:
|
|
75
75
|
|
76
76
|
|
77
77
|
class ZenMLCloudRBAC(RBACInterface, ZenMLCloudSession):
|
78
|
-
"""RBAC implementation that uses the ZenML
|
78
|
+
"""RBAC implementation that uses the ZenML Pro Management Plane as a backend."""
|
79
79
|
|
80
80
|
def check_permissions(
|
81
81
|
self, user: "UserResponse", resources: Set[Resource], action: Action
|
@@ -99,7 +99,7 @@ class ZenMLCloudRBAC(RBACInterface, ZenMLCloudSession):
|
|
99
99
|
# Service accounts have full permissions for now
|
100
100
|
return {resource: True for resource in resources}
|
101
101
|
|
102
|
-
# At this point it's a regular user, which in
|
102
|
+
# At this point it's a regular user, which in a ZenML Pro with RBAC
|
103
103
|
# enabled is always authenticated using external authentication
|
104
104
|
assert user.external_user_id
|
105
105
|
|
@@ -139,7 +139,7 @@ class ZenMLCloudRBAC(RBACInterface, ZenMLCloudSession):
|
|
139
139
|
# Service accounts have full permissions for now
|
140
140
|
return True, []
|
141
141
|
|
142
|
-
# At this point it's a regular user, which in the ZenML
|
142
|
+
# At this point it's a regular user, which in the ZenML Pro with RBAC
|
143
143
|
# enabled is always authenticated using external authentication
|
144
144
|
assert user.external_user_id
|
145
145
|
params = {
|
{zenml_nightly-0.58.2.dev20240612.dist-info → zenml_nightly-0.58.2.dev20240614.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: zenml-nightly
|
3
|
-
Version: 0.58.2.
|
3
|
+
Version: 0.58.2.dev20240614
|
4
4
|
Summary: ZenML: Write production-ready ML code.
|
5
5
|
Home-page: https://zenml.io
|
6
6
|
License: Apache-2.0
|
@@ -212,6 +212,14 @@ Description-Content-Type: text/markdown
|
|
212
212
|
|
213
213
|
---
|
214
214
|
|
215
|
+
## ⭐️ Show Your Support
|
216
|
+
|
217
|
+
If you find ZenML helpful or interesting, please consider giving us a star on GitHub. Your support helps promote the project and lets others know that it's worth checking out.
|
218
|
+
|
219
|
+
Thank you for your support! 🌟
|
220
|
+
|
221
|
+
[](https://github.com/zenml-io/zenml/stargazers)
|
222
|
+
|
215
223
|
## 🤸 Quickstart
|
216
224
|
[](https://colab.research.google.com/github/zenml-io/zenml/blob/main/examples/quickstart/quickstart.ipynb)
|
217
225
|
|
@@ -343,10 +351,11 @@ enable collaborative features as the central MLOps interface for teams.
|
|
343
351
|
|
344
352
|
Currently, there are two main ways to deploy ZenML:
|
345
353
|
|
346
|
-
- **ZenML
|
347
|
-
|
348
|
-
These
|
349
|
-
the burden of server management from your end.
|
354
|
+
- **ZenML Pro**: [ZenML Pro](cloud.zenml.io/?utm_source=readme&utm_medium=referral_link&utm_campaign=cloud_promotion&utm_content=signup_link),
|
355
|
+
offers a SaaS version which comes with a control plane to create and manage multiple ZenML servers.
|
356
|
+
These servers are managed and maintained by ZenML’s dedicated team, alleviating
|
357
|
+
the burden of server management from your end. They also come with additional features like RBAC, a Model Control Plane
|
358
|
+
and [much more](https://zenml-io.gitbook.io/zenml-documentation/getting-started/zenml-pro.
|
350
359
|
- **Self-hosted deployment**: Alternatively, you have the flexibility to [deploy
|
351
360
|
ZenML on your own self-hosted environment](https://docs.zenml.io/getting-started/deploying-zenml#deploying-a-zenml-server).
|
352
361
|
This can be achieved through various methods, including using our CLI, Docker,
|
@@ -396,6 +405,14 @@ Or, if you
|
|
396
405
|
prefer, [open an issue](https://github.com/zenml-io/zenml/issues/new/choose) on
|
397
406
|
our GitHub repo.
|
398
407
|
|
408
|
+
## ⭐️ Show Your Support
|
409
|
+
|
410
|
+
If you find ZenML helpful or interesting, please consider giving us a star on GitHub. Your support helps promote the project and lets others know that it's worth checking out.
|
411
|
+
|
412
|
+
Thank you for your support! 🌟
|
413
|
+
|
414
|
+
[](https://github.com/zenml-io/zenml/stargazers)
|
415
|
+
|
399
416
|
## 📜 License
|
400
417
|
|
401
418
|
ZenML is distributed under the terms of the Apache License Version 2.0.
|
@@ -417,7 +434,7 @@ the Apache License Version 2.0.
|
|
417
434
|
·
|
418
435
|
<a href="https://github.com/zenml-io/zenml/issues">Report Bug</a>
|
419
436
|
·
|
420
|
-
<a href="https://zenml.io/cloud">Sign up for
|
437
|
+
<a href="https://zenml.io/cloud">Sign up for ZenML Pro</a>
|
421
438
|
·
|
422
439
|
<a href="https://www.zenml.io/blog">Read Blog</a>
|
423
440
|
·
|
{zenml_nightly-0.58.2.dev20240612.dist-info → zenml_nightly-0.58.2.dev20240614.dist-info}/RECORD
RENAMED
@@ -1,12 +1,12 @@
|
|
1
1
|
CLA.md,sha256=_ZIvAMX21mdV8bzxQLOYGIDu5vw8WSG7zQwQ_ea27XM,11654
|
2
2
|
CODE-OF-CONDUCT.md,sha256=9zBNLt5KHB64X_qwNWaKWl7BvXkFUEluWd5heLPYQBM,5496
|
3
3
|
CONTRIBUTING.md,sha256=bls3RAZF76sz531nvErQM9EiyeLACOluusZ8-pyH9j4,11488
|
4
|
-
README.md,sha256=
|
5
|
-
RELEASE_NOTES.md,sha256=
|
4
|
+
README.md,sha256=0WzUI6EzIeKXCatYkQ8LV-nPf2ksRkhMN720gkMlvH4,12906
|
5
|
+
RELEASE_NOTES.md,sha256=wu9pumMNKuHhAViSuGVGlhuC_PakKaAois07lk0tk0M,330862
|
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=NG9x-75_-HG2GWnYjt-G6oVHrEm3Jpo0KZUKTVOKo00,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=ZRjE6Ug536SseT7puiCyMmcvw4mr0P_ZBoa-RmwIiEQ,77081
|
|
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=bem7-HgxiRUm4ADt2pvbIBiA9gyDGGsKUamnbROTvl0,28268
|
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
|
@@ -620,7 +620,7 @@ zenml/new/pipelines/model_utils.py,sha256=vGy4kT1ZZbUzAbugAIh9RdH9nAQBqBT5jBKNxY
|
|
620
620
|
zenml/new/pipelines/pipeline.py,sha256=Egvg0PqZ05tWVU_A82X0q6sQHlR3RHB5HW-jScmDvVE,54396
|
621
621
|
zenml/new/pipelines/pipeline_context.py,sha256=O00zdlgvJkYp6TVmgT8aIth61OkIvEgcUS21dXFVqek,4056
|
622
622
|
zenml/new/pipelines/pipeline_decorator.py,sha256=p0K0caZEykEJW3W3x3JopALc5393zZ3uzNiLBykrCTs,4110
|
623
|
-
zenml/new/pipelines/run_utils.py,sha256=
|
623
|
+
zenml/new/pipelines/run_utils.py,sha256=4rU_khfc4eRdiYTt0vGg4Z8DGsIJKvBLBKRH70wPHZ4,8641
|
624
624
|
zenml/new/steps/__init__.py,sha256=knhroJ2h0uHBCGzAiBBGJEiuhEA3cwI6XYBRIyXdbkQ,613
|
625
625
|
zenml/new/steps/decorated_step.py,sha256=C8Ng5PCLc9eql4JF1N345HQ6LyC1qCUdTnysUTeoAJs,1315
|
626
626
|
zenml/new/steps/step_context.py,sha256=Q0Huznc5AKmtCz9MLFok8YQROJdncNJ6CM_BMy9M4JU,16341
|
@@ -680,7 +680,7 @@ zenml/services/terraform/__init__.py,sha256=dvhEw3aZjwCJ4mwg3DJall1RvmqIrqlnXpCN
|
|
680
680
|
zenml/services/terraform/terraform_service.py,sha256=jTOCavGhFYmTae1HCIlRoVn55PJqSJv7FSTWPXlPdnE,15827
|
681
681
|
zenml/stack/__init__.py,sha256=vfHzaoRhPtS-XSlM8Vx1noJZDHF1Pj6LDz2knpn_QBg,1236
|
682
682
|
zenml/stack/authentication_mixin.py,sha256=sg7GkpB-Ao9Gsa7Po0jxMn-_mVYUB42etmspZ6dk8cI,3982
|
683
|
-
zenml/stack/flavor.py,sha256=
|
683
|
+
zenml/stack/flavor.py,sha256=XvGVLy2kzG8eGF5aXWdyVqoIQYxOwsou2GxSxVkgTCw,9821
|
684
684
|
zenml/stack/flavor_registry.py,sha256=Db5Topz04YSS_vPCD9tZiIT7mqiwUh-fXB1_dBr1eZ8,6086
|
685
685
|
zenml/stack/stack.py,sha256=yeF45up9zt0fUAJEIHvcvYAQhfxEq_qV7apOs_SBRDE,38034
|
686
686
|
zenml/stack/stack_component.py,sha256=IxL7I6_SjaJiTH0iRbS37fSZQ0P5p4Z6Q-Ky4dHm6uc,29063
|
@@ -701,10 +701,10 @@ zenml/steps/step_output.py,sha256=zt_Y5OHrYOxipVmpxrPko5JigKRIY7SA23onBu6OtCo,12
|
|
701
701
|
zenml/steps/utils.py,sha256=-dVlMHRXsUVluhJ5uUwjzvu9HDKQz1zeD87ghXF5h0I,15519
|
702
702
|
zenml/types.py,sha256=43jCd-QIn_d13HzF-OzrdzSF5hRdr-3yKoF-fcM62sg,934
|
703
703
|
zenml/utils/__init__.py,sha256=jaMTbjm8tLYkaRoxlZ0Em4ye_ZHOHKgP2goPTTiYGUQ,797
|
704
|
-
zenml/utils/cloud_utils.py,sha256=
|
704
|
+
zenml/utils/cloud_utils.py,sha256=Ss7ly2lCiaX3of9Hvy-eayAz3B6zw86TiDAY4smjAR0,1423
|
705
705
|
zenml/utils/code_repository_utils.py,sha256=CobRYMYfP2yNoA0hcu_WRz5oAff_jY95oyLCHz4fDOo,4734
|
706
706
|
zenml/utils/daemon.py,sha256=GZ7Dx6GLHK04SR50wBxpKYmFhxPBfdLWxJiAWzJC6cM,11863
|
707
|
-
zenml/utils/dashboard_utils.py,sha256=
|
707
|
+
zenml/utils/dashboard_utils.py,sha256=wVRuv0JipvzFY3Gvkp0jLPQSTATenuOYXzGd_4Wptlc,6695
|
708
708
|
zenml/utils/deprecation_utils.py,sha256=NekOWFcWmA3rMvZY5A70g0zH45NHAAb62tTJPmO3O_8,6286
|
709
709
|
zenml/utils/dict_utils.py,sha256=DcZ3RezpkRt3kI_verMmfFblGK4Abzgi35x781-GZSw,2658
|
710
710
|
zenml/utils/docker_utils.py,sha256=bJSlal3NeyQDvqXPE13X8ZJl7jcXE3LStiVX4IVAo3U,13661
|
@@ -718,6 +718,7 @@ zenml/utils/io_utils.py,sha256=fogsvnCODy-aAia7GLZiKL_Ts9J_KJEXzSKN_ukcmXo,6728
|
|
718
718
|
zenml/utils/materializer_utils.py,sha256=xQlxAw3zqhKzfwYzx2_RyfFhym4amoVQfU1s28PQOCQ,1817
|
719
719
|
zenml/utils/mlstacks_utils.py,sha256=Jv0ZRK8seBcnA96UelJhRaB6mRhZiA4062yE0yE7RaA,19949
|
720
720
|
zenml/utils/networking_utils.py,sha256=zTDbOMkMPRWiWLZ2ccchd37rvvZWIIh0Kr9dZE-VJAs,7845
|
721
|
+
zenml/utils/package_utils.py,sha256=Vt0TEndJ_h5_akA3XZGXQokJ6R1HANGdbJtqX6oV5Lc,1665
|
721
722
|
zenml/utils/pagination_utils.py,sha256=nY6jg_RCQoeCipHrQfkdEarCah88P17IHMb4kswUhXY,1341
|
722
723
|
zenml/utils/pipeline_docker_image_builder.py,sha256=_gq0KvtwIcHTfb-ty5CyWJ8iIZKFT2puigSDntbGXw8,26879
|
723
724
|
zenml/utils/proxy_utils.py,sha256=fgRlLa9pfXJDoxtB31_YP7DClOMQLek_nMmM0et6i3w,7241
|
@@ -735,7 +736,7 @@ zenml/utils/visualization_utils.py,sha256=SawUfw1OTkU2GV5rH7tw7hd3eqpFooiB4Fvr_7
|
|
735
736
|
zenml/utils/yaml_utils.py,sha256=DIZOD7iExpvcjDlInCp3hhKnx2o4vmVBsNZEQYQcN44,5750
|
736
737
|
zenml/zen_server/__init__.py,sha256=WyltI9TzFW2mEHZVOs6alLWMCQrrZaFALtrQXs83STA,1355
|
737
738
|
zenml/zen_server/auth.py,sha256=KhPFDKpIMyQFl-yDacOljNZTrPc87S-RsqwWTq1urcM,26238
|
738
|
-
zenml/zen_server/cloud_utils.py,sha256=
|
739
|
+
zenml/zen_server/cloud_utils.py,sha256=A-e8IgZIFeWJAu6-23W-DvehXanFrcW7Y4r4n0GsAxI,7147
|
739
740
|
zenml/zen_server/dashboard/assets/404-CDPQCl4D.js,sha256=xFqSAGx5S62Xxb-ndVM1AiVJ4C6Grk26JOXZ-utpPWU,1033
|
740
741
|
zenml/zen_server/dashboard/assets/@radix-C9DBgJhe.js,sha256=MrmwKYEEzL1fZ5cWQ5TCAPTAjKZV5I-lVUEx_hbDFWc,262349
|
741
742
|
zenml/zen_server/dashboard/assets/@react-router-DYovave8.js,sha256=ReKsX4rJR_9x7nmADChk5R3gGTSzzrFCQyKD2w0r3xk,60520
|
@@ -1057,11 +1058,11 @@ zenml/zen_server/exceptions.py,sha256=i_HRYqDbKAfRUI3SeMTJGLGDwCtaHRfg-H54TOHNXX
|
|
1057
1058
|
zenml/zen_server/feature_gate/__init__.py,sha256=yabe4fBY6NSusn-QlKQDLOvXVLERNpcAQgigsyWQIbQ,612
|
1058
1059
|
zenml/zen_server/feature_gate/endpoint_utils.py,sha256=upQzEOlrD5c6cg0TfxYVM4BKDHle3LIV_c7NZHoaKvg,2220
|
1059
1060
|
zenml/zen_server/feature_gate/feature_gate_interface.py,sha256=AdYAsHiNbGaloxSHpm7DLSsa8CDEGu8ikyxp9U3a0wU,1639
|
1060
|
-
zenml/zen_server/feature_gate/zenml_cloud_feature_gate.py,sha256=
|
1061
|
+
zenml/zen_server/feature_gate/zenml_cloud_feature_gate.py,sha256=PF4h7QZwbArTRD8Ms2242W6nZd9P3hQnoo5ZG4l-imw,4248
|
1061
1062
|
zenml/zen_server/jwt.py,sha256=cMJS24EDXqhZ_-hOFDORsZMgNF6JcfSGNYFOuh99u_w,6151
|
1062
1063
|
zenml/zen_server/pipeline_deployment/__init__.py,sha256=79knXLKfegsvVSVSWecpqrepq6iAavTUA4hKuiDk-WE,613
|
1063
1064
|
zenml/zen_server/pipeline_deployment/runner_entrypoint_configuration.py,sha256=PpraJ77nCOUesVC6IBxNTeVMdS3eWG2vt-4GrT8hORQ,1682
|
1064
|
-
zenml/zen_server/pipeline_deployment/utils.py,sha256=
|
1065
|
+
zenml/zen_server/pipeline_deployment/utils.py,sha256=x4lOm_wFZQz0u-fAtygIkK1V0qdW0NoKw2gle80Lnp4,13290
|
1065
1066
|
zenml/zen_server/pipeline_deployment/workload_manager_interface.py,sha256=CL9c7z8ajuZE01DaHmdCDCZmsroDcTarvN-nE8jv6qQ,2590
|
1066
1067
|
zenml/zen_server/rate_limit.py,sha256=rOg5H_6rOGQ_qiSCtMKPREmL1LL3bZyn4czKILtImJg,6057
|
1067
1068
|
zenml/zen_server/rbac/__init__.py,sha256=nACbn_G7nZt_AWM3zeFL0FCmELvQnvaOFMwvTG3-6ZE,637
|
@@ -1069,7 +1070,7 @@ zenml/zen_server/rbac/endpoint_utils.py,sha256=F_l2LyucuOiN3OEOtw-Xs6bxJPrJNPlfZ
|
|
1069
1070
|
zenml/zen_server/rbac/models.py,sha256=u_9pVKqtC75qfanSOjQup7E2dJGTJ60nQqb7xuvDjqM,2378
|
1070
1071
|
zenml/zen_server/rbac/rbac_interface.py,sha256=pNdfNtis5YhQgpWYkli7xNwfzNT_uXQlBaYKlSFi5HA,2881
|
1071
1072
|
zenml/zen_server/rbac/utils.py,sha256=YtDhsjDbZ2JpKwcHsAVqohhkPfM1Cv0Klryz4IyRoBM,18529
|
1072
|
-
zenml/zen_server/rbac/zenml_cloud_rbac.py,sha256=
|
1073
|
+
zenml/zen_server/rbac/zenml_cloud_rbac.py,sha256=rm4Nq2-8ZgyJqPAyxMwP_FUSUJ5dFMbHppADZlyG4PM,6596
|
1073
1074
|
zenml/zen_server/routers/__init__.py,sha256=ViyAhWL-ogHxE9wBvB_iMcur5H1NRVrzXkpogVY7FBA,641
|
1074
1075
|
zenml/zen_server/routers/artifact_endpoint.py,sha256=XhbOat2pddDluiT0a_QH2RfNcqlwtf3yf2Fh92a6ZDw,5175
|
1075
1076
|
zenml/zen_server/routers/artifact_version_endpoints.py,sha256=o9RVrnzuiY-AV6Nj10YwXQ_jy-OqCVMk1hEKfmihPEQ,7751
|
@@ -1293,8 +1294,8 @@ zenml/zen_stores/secrets_stores/service_connector_secrets_store.py,sha256=0CgWJo
|
|
1293
1294
|
zenml/zen_stores/secrets_stores/sql_secrets_store.py,sha256=Cips_SPX7CtfYQyOZNiHAhmVtVgb17HCyHQia5MlTX4,8653
|
1294
1295
|
zenml/zen_stores/sql_zen_store.py,sha256=f5spF_vWJg8kO6ud9uzELqh7LRxSAWyB1HLono1_gT0,353540
|
1295
1296
|
zenml/zen_stores/zen_store_interface.py,sha256=vi0tr6vDES97h_rFZZYeaz2Y0nM4xm66CcUXSOEITN4,86372
|
1296
|
-
zenml_nightly-0.58.2.
|
1297
|
-
zenml_nightly-0.58.2.
|
1298
|
-
zenml_nightly-0.58.2.
|
1299
|
-
zenml_nightly-0.58.2.
|
1300
|
-
zenml_nightly-0.58.2.
|
1297
|
+
zenml_nightly-0.58.2.dev20240614.dist-info/LICENSE,sha256=wbnfEnXnafPbqwANHkV6LUsPKOtdpsd-SNw37rogLtc,11359
|
1298
|
+
zenml_nightly-0.58.2.dev20240614.dist-info/METADATA,sha256=WS0ebyPz3TfJpYExjgZ_kogHObEoIEbSG2vpykSgrpU,20021
|
1299
|
+
zenml_nightly-0.58.2.dev20240614.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
1300
|
+
zenml_nightly-0.58.2.dev20240614.dist-info/entry_points.txt,sha256=QK3ETQE0YswAM2mWypNMOv8TLtr7EjnqAFq1br_jEFE,43
|
1301
|
+
zenml_nightly-0.58.2.dev20240614.dist-info/RECORD,,
|
{zenml_nightly-0.58.2.dev20240612.dist-info → zenml_nightly-0.58.2.dev20240614.dist-info}/LICENSE
RENAMED
File without changes
|
{zenml_nightly-0.58.2.dev20240612.dist-info → zenml_nightly-0.58.2.dev20240614.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|