zenml-nightly 0.83.1.dev20250624__py3-none-any.whl → 0.83.1.dev20250626__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 +3 -2
- zenml/cli/login.py +21 -3
- zenml/cli/service_connectors.py +5 -12
- zenml/cli/stack.py +1 -5
- zenml/cli/utils.py +8 -52
- zenml/client.py +32 -40
- zenml/config/__init__.py +13 -2
- zenml/constants.py +0 -1
- zenml/exceptions.py +16 -0
- zenml/integrations/airflow/orchestrators/airflow_orchestrator.py +15 -6
- zenml/integrations/aws/container_registries/aws_container_registry.py +3 -1
- zenml/integrations/aws/orchestrators/sagemaker_orchestrator.py +54 -58
- zenml/integrations/azure/orchestrators/azureml_orchestrator.py +28 -19
- zenml/integrations/databricks/orchestrators/databricks_orchestrator.py +19 -63
- zenml/integrations/databricks/orchestrators/databricks_orchestrator_entrypoint_config.py +8 -3
- zenml/integrations/gcp/orchestrators/vertex_orchestrator.py +36 -61
- zenml/integrations/hyperai/orchestrators/hyperai_orchestrator.py +19 -22
- zenml/integrations/integration.py +23 -58
- zenml/integrations/kubeflow/orchestrators/kubeflow_orchestrator.py +28 -31
- zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator.py +33 -20
- zenml/integrations/lightning/orchestrators/lightning_orchestrator.py +25 -100
- zenml/integrations/skypilot/orchestrators/skypilot_base_vm_orchestrator.py +19 -8
- zenml/integrations/skypilot/utils.py +17 -13
- zenml/integrations/tekton/orchestrators/tekton_orchestrator.py +28 -12
- zenml/models/__init__.py +2 -0
- zenml/models/v2/core/service_connector.py +178 -108
- zenml/models/v2/core/step_run.py +1 -0
- zenml/orchestrators/__init__.py +2 -0
- zenml/orchestrators/base_orchestrator.py +137 -66
- zenml/orchestrators/input_utils.py +5 -13
- zenml/orchestrators/local/local_orchestrator.py +19 -9
- zenml/orchestrators/local_docker/local_docker_orchestrator.py +15 -5
- zenml/orchestrators/publish_utils.py +24 -0
- zenml/orchestrators/step_run_utils.py +1 -2
- zenml/pipelines/run_utils.py +12 -7
- zenml/service_connectors/service_connector.py +11 -61
- zenml/service_connectors/service_connector_utils.py +4 -2
- zenml/step_operators/step_operator_entrypoint_configuration.py +1 -1
- zenml/utils/package_utils.py +111 -1
- zenml/zen_server/routers/service_connectors_endpoints.py +7 -22
- zenml/zen_stores/migrations/versions/5bb25e95849c_add_internal_secrets.py +62 -0
- zenml/zen_stores/rest_zen_store.py +204 -132
- zenml/zen_stores/schemas/secret_schemas.py +5 -0
- zenml/zen_stores/schemas/service_connector_schemas.py +16 -14
- zenml/zen_stores/secrets_stores/service_connector_secrets_store.py +4 -1
- zenml/zen_stores/sql_zen_store.py +241 -119
- zenml/zen_stores/zen_store_interface.py +9 -1
- {zenml_nightly-0.83.1.dev20250624.dist-info → zenml_nightly-0.83.1.dev20250626.dist-info}/METADATA +1 -1
- {zenml_nightly-0.83.1.dev20250624.dist-info → zenml_nightly-0.83.1.dev20250626.dist-info}/RECORD +53 -53
- zenml/utils/integration_utils.py +0 -34
- {zenml_nightly-0.83.1.dev20250624.dist-info → zenml_nightly-0.83.1.dev20250626.dist-info}/LICENSE +0 -0
- {zenml_nightly-0.83.1.dev20250624.dist-info → zenml_nightly-0.83.1.dev20250626.dist-info}/WHEEL +0 -0
- {zenml_nightly-0.83.1.dev20250624.dist-info → zenml_nightly-0.83.1.dev20250626.dist-info}/entry_points.txt +0 -0
@@ -1980,7 +1980,10 @@ class ZenStoreInterface(ABC):
|
|
1980
1980
|
|
1981
1981
|
@abstractmethod
|
1982
1982
|
def get_service_connector(
|
1983
|
-
self,
|
1983
|
+
self,
|
1984
|
+
service_connector_id: UUID,
|
1985
|
+
hydrate: bool = True,
|
1986
|
+
expand_secrets: bool = False,
|
1984
1987
|
) -> ServiceConnectorResponse:
|
1985
1988
|
"""Gets a specific service connector.
|
1986
1989
|
|
@@ -1988,6 +1991,8 @@ class ZenStoreInterface(ABC):
|
|
1988
1991
|
service_connector_id: The ID of the service connector to get.
|
1989
1992
|
hydrate: Flag deciding whether to hydrate the output model(s)
|
1990
1993
|
by including metadata fields in the response.
|
1994
|
+
expand_secrets: Flag deciding whether to include the secrets
|
1995
|
+
associated with the service connector.
|
1991
1996
|
|
1992
1997
|
Returns:
|
1993
1998
|
The requested service connector, if it was found.
|
@@ -2001,6 +2006,7 @@ class ZenStoreInterface(ABC):
|
|
2001
2006
|
self,
|
2002
2007
|
filter_model: ServiceConnectorFilter,
|
2003
2008
|
hydrate: bool = False,
|
2009
|
+
expand_secrets: bool = False,
|
2004
2010
|
) -> Page[ServiceConnectorResponse]:
|
2005
2011
|
"""List all service connectors.
|
2006
2012
|
|
@@ -2009,6 +2015,8 @@ class ZenStoreInterface(ABC):
|
|
2009
2015
|
params.
|
2010
2016
|
hydrate: Flag deciding whether to hydrate the output model(s)
|
2011
2017
|
by including metadata fields in the response.
|
2018
|
+
expand_secrets: Flag deciding whether to include the secrets
|
2019
|
+
associated with the service connector.
|
2012
2020
|
|
2013
2021
|
Returns:
|
2014
2022
|
A page of all service connectors.
|
{zenml_nightly-0.83.1.dev20250624.dist-info → zenml_nightly-0.83.1.dev20250626.dist-info}/RECORD
RENAMED
@@ -1,5 +1,5 @@
|
|
1
1
|
zenml/README.md,sha256=827dekbOWAs1BpW7VF1a4d7EbwPbjwccX-2zdXBENZo,1777
|
2
|
-
zenml/VERSION,sha256=
|
2
|
+
zenml/VERSION,sha256=WLsudMCLPsNrOniZ2wqM-eL995LZBArJ4ZPYEjXjRbw,19
|
3
3
|
zenml/__init__.py,sha256=r7JUg2SVDf_dPhS7iU6vudKusEqK4ics7_jFMZhq0o4,2731
|
4
4
|
zenml/actions/__init__.py,sha256=mrt6wPo73iKRxK754_NqsGyJ3buW7RnVeIGXr1xEw8Y,681
|
5
5
|
zenml/actions/base_action.py,sha256=UcaHev6BTuLDwuswnyaPjdA8AgUqB5xPZ-lRtuvf2FU,25553
|
@@ -30,7 +30,7 @@ zenml/cli/__init__.py,sha256=Q-DTKGMxUCyN8aAchAvjoWJeZ3f55Hnt4FpagiNHSbU,75655
|
|
30
30
|
zenml/cli/annotator.py,sha256=JRR7_TJOWKyiKGv1kwSjG1Ay6RBWPVgm0X-D0uSBlyE,6976
|
31
31
|
zenml/cli/artifact.py,sha256=7lsAS52DroBTFkFWxkyb-lIDOGP5jPL_Se_RDG_2jgg,9564
|
32
32
|
zenml/cli/authorized_device.py,sha256=_1PzE3BM2SmwtuzRliEMStvbBRKWQmg_lbwCRtn8dBg,4324
|
33
|
-
zenml/cli/base.py,sha256=
|
33
|
+
zenml/cli/base.py,sha256=oppsoYAgZFPZjw17Bp6U2ufhLQpGAL14Ha_xl8EFXo4,28414
|
34
34
|
zenml/cli/cli.py,sha256=Pnq468IZ4oqzluA_gZ5PsrdnSPEyHcasIH-xI1_8Y_Q,5454
|
35
35
|
zenml/cli/code_repository.py,sha256=6T3Hgv0vxNGhZ4Lb5TDw8t0Ihzv0qQS6ojFoflQ2de8,9446
|
36
36
|
zenml/cli/config.py,sha256=UI_j0a_zRgEUd2q0zuOi4UgbjiCYjMJ_Y9iSg-wi8Oo,2768
|
@@ -38,7 +38,7 @@ zenml/cli/downgrade.py,sha256=eTpXts8y4s3wEUwOlvZGWsTngoMV8Stuzj0K-SAQUGU,1887
|
|
38
38
|
zenml/cli/feature.py,sha256=Q8tNvWBlRze3FUyn0_VpOdl316ZW87476j7ezJb16GA,4387
|
39
39
|
zenml/cli/formatter.py,sha256=OoAzgxpOEXrzT9FSFG0Bs5VRtVFEYck0gDYo02GCjzI,6440
|
40
40
|
zenml/cli/integration.py,sha256=Rq37R-QiSvaFOMmlA0YJTwDti4slLp-hEf05vbWxkFk,17346
|
41
|
-
zenml/cli/login.py,sha256=
|
41
|
+
zenml/cli/login.py,sha256=bS2hhJAU4FtnNZ9Y3M_q-q9_ga_UnkfBK88DD0A3Ook,39509
|
42
42
|
zenml/cli/model.py,sha256=_6la1czUXPBWBkiZLS6iwGHMy2z4vJLX0Z2Ho2zV48M,21921
|
43
43
|
zenml/cli/model_registry.py,sha256=zzxWXXFhKu2B1Wp0u7prKVnN1ftM-JdGdQwlD-5G-QM,20786
|
44
44
|
zenml/cli/pipeline.py,sha256=Vlz1OgGb1Ep-4Ekgd-Wz5SmieWigfx56i8wA5BGl228,19222
|
@@ -47,22 +47,22 @@ zenml/cli/secret.py,sha256=zwt07v0xoIf_dLf-qY5CFdbKepBEuwmXD2HIMcLe_xU,20164
|
|
47
47
|
zenml/cli/served_model.py,sha256=3w1UcAbg6Geu37fr7ej1_81GBCt3fF7j3Ge799YE4Mc,14974
|
48
48
|
zenml/cli/server.py,sha256=j5uu1Ej6v9K-yBnguGdg8-BedLxUtKaEeW20X6nLjGc,26351
|
49
49
|
zenml/cli/service_accounts.py,sha256=DkSrBroYvQ3zNDHVYbY9IxqmbN7f8wGsAmt0Wyjq1FE,17766
|
50
|
-
zenml/cli/service_connectors.py,sha256=
|
51
|
-
zenml/cli/stack.py,sha256=
|
50
|
+
zenml/cli/service_connectors.py,sha256=P0SqtyryT4E5t4BLRSzD2rkQk6UXKYch9mGCqrYokgo,74153
|
51
|
+
zenml/cli/stack.py,sha256=G_ISwlDiqnluD2sYr8dhORBFmkoPCzIYDLTnDBrYg9o,67062
|
52
52
|
zenml/cli/stack_components.py,sha256=QqakqWsvzgG7nOvQmvlbcfwDZUTsXI2pOlsOBXP5EXg,52963
|
53
53
|
zenml/cli/tag.py,sha256=JiAoYyDDBBYj0ChT8zWY8KGjzAnJTNx-WLQrjLLEyik,4802
|
54
54
|
zenml/cli/text_utils.py,sha256=bY1GIjoULt1cW2FyrPlMoAXNS2R7cSOjDFEZQqrpVQ8,3553
|
55
55
|
zenml/cli/user_management.py,sha256=sNnhaUxH-cHecbZBR1L0mEU0TnLNZHzI6ZBCUSQa7OY,13078
|
56
|
-
zenml/cli/utils.py,sha256=
|
56
|
+
zenml/cli/utils.py,sha256=6Ld_CK4k5B-Kn8ilGFiV-J4Xl8JEX36PZrNFIT5slLo,85310
|
57
57
|
zenml/cli/version.py,sha256=nm1iSU_1V6-MUwpMKeXcwFhLYGUMLswvQL67cEuCpxA,3635
|
58
|
-
zenml/client.py,sha256=
|
58
|
+
zenml/client.py,sha256=3-XK7Uk58RxiG9jqOlsFgi7tJVAj3r3QcMh_drQ_qsA,293118
|
59
59
|
zenml/client_lazy_loader.py,sha256=oyxKvBWVB7k2pHMavdhNEOfR2Vk4IS3XUu43SBzDPsI,7152
|
60
60
|
zenml/code_repositories/__init__.py,sha256=W5bDfzAG8OXIKZSV1L-VHuzMcSCYa9qzTdPb3jqfyYw,920
|
61
61
|
zenml/code_repositories/base_code_repository.py,sha256=Id6VjbUu8N3ZpNvBGhOgbahtoMiCAtYXed3G7YQ_iAc,5225
|
62
62
|
zenml/code_repositories/git/__init__.py,sha256=vU8UzMp8sv9n-R2r7VKa9LdQcYER6BhO4O-z8Ppa3kM,824
|
63
63
|
zenml/code_repositories/git/local_git_repository_context.py,sha256=hfX7zVDQ27Le0qb4HKoJMcRB8YWfK8_yHPPgfh1SAS0,5848
|
64
64
|
zenml/code_repositories/local_repository_context.py,sha256=1VyiYkJBDVg0iGusgRQDToGRPJuu9lx7jTBDpplukDg,2816
|
65
|
-
zenml/config/__init__.py,sha256=
|
65
|
+
zenml/config/__init__.py,sha256=NIMS7QQo3-uVkNlzPvR5FbtgPdRibF2xFJB7Vr0fhCM,1826
|
66
66
|
zenml/config/base_settings.py,sha256=itoLqc1cOwEYhgSGdZmSKSaBevQkvYH7NQh7PUamazc,1700
|
67
67
|
zenml/config/build_configuration.py,sha256=jGGNwP0Cb7a80JXArNxDgxzxl9ytSZRtv-WW7_psLbM,6870
|
68
68
|
zenml/config/compiler.py,sha256=dVQ2FfliNxt93H2SYwlSOVyh-5dmdMd7abbIVRuIn3I,23023
|
@@ -85,7 +85,7 @@ zenml/config/step_run_info.py,sha256=KiVRSTtKmZ1GbvseDTap2imr7XwMHD3jSFVpyLNEK1I
|
|
85
85
|
zenml/config/store_config.py,sha256=Cla5p5dTB6nNlo8_OZDs9hod5hspi64vxwtZj882XgU,3559
|
86
86
|
zenml/config/strict_base_model.py,sha256=t_ULrtJF2eW7TgyYBRobl1fscwwIZXATYky8ER97ev4,860
|
87
87
|
zenml/console.py,sha256=hj_KerPQKwnyKACj0ehSqUQX0mGVCJBKE1QvCt6ik3A,1160
|
88
|
-
zenml/constants.py,sha256=
|
88
|
+
zenml/constants.py,sha256=DSMrlFcC2dWXlGOOEMoeK28qnVj9eKWjMBj39bGAWPU,16716
|
89
89
|
zenml/container_registries/__init__.py,sha256=ZSPbBIOnzhg88kQSpYgKe_POLuru14m629665-kAVAA,2200
|
90
90
|
zenml/container_registries/azure_container_registry.py,sha256=t1sfDa94Vzbyqtb1iPFNutJ2EXV5_p9CUNITasoiQ70,2667
|
91
91
|
zenml/container_registries/base_container_registry.py,sha256=-9RIkD6oXNPaU59R3PB_PtyCqsFoLPLSn5xYZmEmzbc,8915
|
@@ -110,7 +110,7 @@ zenml/event_sources/base_event.py,sha256=irrpiYi4fDYewzaXtb6_gPsqyFlYYLSap2BTGQz
|
|
110
110
|
zenml/event_sources/base_event_source.py,sha256=04ramQhcPhGD9Mo9BcJZR-b9fJb8a4wzvlPVMAb9Dyk,25893
|
111
111
|
zenml/event_sources/webhooks/__init__.py,sha256=VsHzSn1oKFaUs495ZqsKCfXiYxtaeGsnSGuvuqbGXCg,658
|
112
112
|
zenml/event_sources/webhooks/base_webhook_event_source.py,sha256=2zADrL3cNpD-akZRdemUePUnTl8pPMPVX6eFQgWeUSo,7371
|
113
|
-
zenml/exceptions.py,sha256=
|
113
|
+
zenml/exceptions.py,sha256=YIOFic8CpPaBrQr28K6d2gBNeZRKaDArya3cGWS9a-s,7327
|
114
114
|
zenml/experiment_trackers/__init__.py,sha256=b5XlKoRtMR1WBQVEiItolkpsa0iJ1IqxTmmRatr4YDw,1119
|
115
115
|
zenml/experiment_trackers/base_experiment_tracker.py,sha256=K92w7c0r45qLPIsA3YmwPflaIl_WTK8-_Hh_1MQiLkE,2218
|
116
116
|
zenml/feature_stores/__init__.py,sha256=tSW7YnDa3NDnlkX3yA_CTdX7ocWB9gsfF-7X9sc6i8Y,1415
|
@@ -128,7 +128,7 @@ zenml/integrations/airflow/__init__.py,sha256=KsEMqW2NpjgKNY_bHmfu2LtubXoSwdaE6S
|
|
128
128
|
zenml/integrations/airflow/flavors/__init__.py,sha256=Y48mn5OxERPPaXDBd5CFAIn6yhLPsgN5ZMk26hLXiNM,800
|
129
129
|
zenml/integrations/airflow/flavors/airflow_orchestrator_flavor.py,sha256=VfZQD2H-WwIgVD1Fi7uewdnkvRoSykY0YCfROFDadXg,6189
|
130
130
|
zenml/integrations/airflow/orchestrators/__init__.py,sha256=UPly5wqlFdzLSiCeEtIExRXjTNdO0ys2tHSEbEv1Dks,845
|
131
|
-
zenml/integrations/airflow/orchestrators/airflow_orchestrator.py,sha256
|
131
|
+
zenml/integrations/airflow/orchestrators/airflow_orchestrator.py,sha256=2o1aJlUPjDH-jI1Sfwha0-rW0FYaTyU2E7wEh9OTel4,15944
|
132
132
|
zenml/integrations/airflow/orchestrators/dag_generator.py,sha256=H5OWZte6q1mXR-joXCbpKJ2KGPIhSOCL0ok-RIiZ1OQ,7345
|
133
133
|
zenml/integrations/argilla/__init__.py,sha256=LmGOS77UN3jODugqrqXR_6oAg1JC6HN8srY1VgmfpgM,1415
|
134
134
|
zenml/integrations/argilla/annotators/__init__.py,sha256=QjRMxIQ-skulcLN94GuHuukrmZH27e8lke_tXUp8MOg,798
|
@@ -137,7 +137,7 @@ zenml/integrations/argilla/flavors/__init__.py,sha256=MTogEeiZ1k7nLzGKok3azK_VhK
|
|
137
137
|
zenml/integrations/argilla/flavors/argilla_annotator_flavor.py,sha256=NAy6QKLWYXHPTCoWc9RIovsngcRGMwseu3rdNjiCpo4,4473
|
138
138
|
zenml/integrations/aws/__init__.py,sha256=WevXkUf7tNGrxkY2wFYPohuBM2Fd40wRE8ff2y0k-ks,2452
|
139
139
|
zenml/integrations/aws/container_registries/__init__.py,sha256=fOwo84MiaX_7XhNQEXeyVh8AyOlcIl6nSu_ig68GkSs,827
|
140
|
-
zenml/integrations/aws/container_registries/aws_container_registry.py,sha256=
|
140
|
+
zenml/integrations/aws/container_registries/aws_container_registry.py,sha256=ENJIwth_rVcrBww-0VyBZBak0g4lF4pPJCmO94oX8-g,6150
|
141
141
|
zenml/integrations/aws/flavors/__init__.py,sha256=XYL9fpwKzeFfHCjakU0iJ3SyHVRJk63QT7luOy9Giek,1480
|
142
142
|
zenml/integrations/aws/flavors/aws_container_registry_flavor.py,sha256=GIDLOySz1zF08YSkmKIj89TxBqSLWueXLAHyxYwm-NI,4169
|
143
143
|
zenml/integrations/aws/flavors/aws_image_builder_flavor.py,sha256=XobJOw5ymbY22i7YHWGYOKDQoJQAqTeMIfvkADt-DDc,5343
|
@@ -146,7 +146,7 @@ zenml/integrations/aws/flavors/sagemaker_step_operator_flavor.py,sha256=e3locb2O
|
|
146
146
|
zenml/integrations/aws/image_builders/__init__.py,sha256=91hgH1OphG2i-vk-G8N4yKBFIzK89Wu7BK4-T5yOA7E,786
|
147
147
|
zenml/integrations/aws/image_builders/aws_image_builder.py,sha256=UcPYYYjJjfsicY3hV4OZeJt552AVmwPZPlv-AsG1g1I,11489
|
148
148
|
zenml/integrations/aws/orchestrators/__init__.py,sha256=Wh0Fhtt_uo6YrkvXY9kL0M478FL7XpapjoFreUZbgUg,794
|
149
|
-
zenml/integrations/aws/orchestrators/sagemaker_orchestrator.py,sha256=
|
149
|
+
zenml/integrations/aws/orchestrators/sagemaker_orchestrator.py,sha256=kX_fPcjrxrNe0xiIgNgfT0ypEycAVjNkqj4iL-hPQOY,39289
|
150
150
|
zenml/integrations/aws/orchestrators/sagemaker_orchestrator_entrypoint_config.py,sha256=WXCWdVojIZxx5_3-g1T95S2vsJ-RLNGcp-V409wgme0,1555
|
151
151
|
zenml/integrations/aws/service_connectors/__init__.py,sha256=w2Md40yG89PwmU9eBceh6dGy3XYZ3MKusNAZ51sGOgE,783
|
152
152
|
zenml/integrations/aws/service_connectors/aws_service_connector.py,sha256=7H69IoOYmyn5QcXEfL1-OmC0UaQ54TfNNhv2t8A6Daw,92107
|
@@ -163,7 +163,7 @@ zenml/integrations/azure/flavors/azureml.py,sha256=S40e2vlKcpFZZJ5NkvUMX5HQAOWdx
|
|
163
163
|
zenml/integrations/azure/flavors/azureml_orchestrator_flavor.py,sha256=XR_UI-Bvs7W1S_lFsGKqEiIjhVL87sY3_VOcC9WsrTY,4965
|
164
164
|
zenml/integrations/azure/flavors/azureml_step_operator_flavor.py,sha256=jBA8WuChZ8hJy_xumG6pf-2HTxiRznJ6YRmi8KePD_I,6267
|
165
165
|
zenml/integrations/azure/orchestrators/__init__.py,sha256=q4rBPIJHcuUr6dLUBdrTkQGHFgPAqf44KE_I7mmOr0A,777
|
166
|
-
zenml/integrations/azure/orchestrators/azureml_orchestrator.py,sha256=
|
166
|
+
zenml/integrations/azure/orchestrators/azureml_orchestrator.py,sha256=B3eUdXOKM1RdLRqPWiIF5cXtYZ9bM8bsbvOqCw7TbGw,20535
|
167
167
|
zenml/integrations/azure/orchestrators/azureml_orchestrator_entrypoint_config.py,sha256=lacOyorsHa-HuD_kxN9M6BUiZDvs5jL9AnJWwrFCtp4,3104
|
168
168
|
zenml/integrations/azure/service_connectors/__init__.py,sha256=yMz6bTCtIZqZwfEM6h7-PSWsd_DB8l0OD9z_bdzomZw,793
|
169
169
|
zenml/integrations/azure/service_connectors/azure_service_connector.py,sha256=4Qma8FyKpZ5GujIa-RrGU2Lh80j9GHEyBwwDfyK7aAI,81344
|
@@ -202,8 +202,8 @@ zenml/integrations/databricks/flavors/databricks_orchestrator_flavor.py,sha256=j
|
|
202
202
|
zenml/integrations/databricks/model_deployers/__init__.py,sha256=8qqgepgmJWbh4KqqckxZKv5z9w_vMHLtimN-8lSWU7o,833
|
203
203
|
zenml/integrations/databricks/model_deployers/databricks_model_deployer.py,sha256=hxNxjs_CdPr4MX1zloVXdF75WQbvToV0oOV8P8vIAH0,9173
|
204
204
|
zenml/integrations/databricks/orchestrators/__init__.py,sha256=qmpWv6-OjzvlQw3-hWcGaiJnwp3DgzwW4duJHG7QVys,830
|
205
|
-
zenml/integrations/databricks/orchestrators/databricks_orchestrator.py,sha256=
|
206
|
-
zenml/integrations/databricks/orchestrators/databricks_orchestrator_entrypoint_config.py,sha256=
|
205
|
+
zenml/integrations/databricks/orchestrators/databricks_orchestrator.py,sha256=A7m0UbpJRobN7Nu0xspkQlKD5jsQ7zkZl9dlRxYuxQ8,17376
|
206
|
+
zenml/integrations/databricks/orchestrators/databricks_orchestrator_entrypoint_config.py,sha256=IpzebyjrUwE1wcvGK-5dEW9T-O8JPJcN0OT7q3C3vhc,3580
|
207
207
|
zenml/integrations/databricks/services/__init__.py,sha256=Sve9TXrgzs7PH_rFq4ReqAdnrffe-p0YzejRlcCgHTw,811
|
208
208
|
zenml/integrations/databricks/services/databricks_deployment.py,sha256=RM2aIiOvoafoYmZXJ7oa2qKskW5QjT8C2gP8ZY40ZUs,14568
|
209
209
|
zenml/integrations/databricks/utils/__init__.py,sha256=yujBPgdRCo_7dnl3osKvv9gwKtxMJlzShD4nTWJu_mw,657
|
@@ -269,7 +269,7 @@ zenml/integrations/gcp/google_credentials_mixin.py,sha256=bPy3JYCCcyuTmPiVFqbY81
|
|
269
269
|
zenml/integrations/gcp/image_builders/__init__.py,sha256=2IvTL6U2YpUoxGQXeXew-6WFoL5hHIxkqr4DaA5Ez9w,786
|
270
270
|
zenml/integrations/gcp/image_builders/gcp_image_builder.py,sha256=5T6BXsHxLhvp1BF_rslXl1oZzykJUPuZ3E_7-9ZZYLk,9019
|
271
271
|
zenml/integrations/gcp/orchestrators/__init__.py,sha256=6xLFJKZKQk73fHPF-XdpbQO87zjQNGTsNHjJjLfG_Kg,805
|
272
|
-
zenml/integrations/gcp/orchestrators/vertex_orchestrator.py,sha256=
|
272
|
+
zenml/integrations/gcp/orchestrators/vertex_orchestrator.py,sha256=sKAsi6F-Ik7XFgKVpdA_aNp3XUTIHKGAnBNIrBjrXNg,40794
|
273
273
|
zenml/integrations/gcp/service_connectors/__init__.py,sha256=fdydawaor8KAtMYvRZieiTuA1i5QATxXXgI-yV1lsn8,788
|
274
274
|
zenml/integrations/gcp/service_connectors/gcp_service_connector.py,sha256=9u-vEHbmSyN5IGwYI8v39TcFZg5ObgkxlbwSPz-e5zE,95018
|
275
275
|
zenml/integrations/gcp/step_operators/__init__.py,sha256=iPkob2LtPIQ-OHszhbNz_ojhoovL6SprmTx37It4EJ8,808
|
@@ -317,10 +317,10 @@ zenml/integrations/hyperai/__init__.py,sha256=6ed5rgRgiRr2Ksi3DDFUaNQwPkCfE4BRSn
|
|
317
317
|
zenml/integrations/hyperai/flavors/__init__.py,sha256=PUGBPmQ7y3H7QU2zAj7Ri0rrUBbOWnM_L59AIVWUYwU,800
|
318
318
|
zenml/integrations/hyperai/flavors/hyperai_orchestrator_flavor.py,sha256=erjbYJ5E3qkifyGd_ArtbY1JdfyOEz4vgl9QrZK0R9Y,5578
|
319
319
|
zenml/integrations/hyperai/orchestrators/__init__.py,sha256=kSYpMZPEWwNu2vxoOC6PeyQ9RLzsPAgTHxL35K36MiE,784
|
320
|
-
zenml/integrations/hyperai/orchestrators/hyperai_orchestrator.py,sha256=
|
320
|
+
zenml/integrations/hyperai/orchestrators/hyperai_orchestrator.py,sha256=YC0EuZkxAqjlNaocyKG2cipmqyo_a2vdI16Blb4rC2w,20218
|
321
321
|
zenml/integrations/hyperai/service_connectors/__init__.py,sha256=oHuCNC09z5C7Wlb3vV1d4zJjftttHg364eoEBVRDOdo,803
|
322
322
|
zenml/integrations/hyperai/service_connectors/hyperai_service_connector.py,sha256=7Ql5cVoSY3SE4j7uzeVi5TWuoKFDvsHFTn72k9_wPUY,13400
|
323
|
-
zenml/integrations/integration.py,sha256=
|
323
|
+
zenml/integrations/integration.py,sha256=S7Cgmj1rfgwQQNkYD81KbuzJzC9FUee32AK1k-_FAyg,5253
|
324
324
|
zenml/integrations/kaniko/__init__.py,sha256=fw6TdTcoU_JphrORv4pwsb7G6lu5537peIoPJdLv_NU,1341
|
325
325
|
zenml/integrations/kaniko/flavors/__init__.py,sha256=PpI7yUpjgLwwAi1ma5uTGihG4zUWxURiRTpHoHEXBIw,865
|
326
326
|
zenml/integrations/kaniko/flavors/kaniko_image_builder_flavor.py,sha256=iRICgO_f9RF1XOp7bO8qjmHm83v2NYqoJWorHZKhVzE,5080
|
@@ -330,7 +330,7 @@ zenml/integrations/kubeflow/__init__.py,sha256=4kP4BuSbRs9xXyymv38rgb5l-LJIxb7te
|
|
330
330
|
zenml/integrations/kubeflow/flavors/__init__.py,sha256=l560A0oIpYeTpVVrdrVVYj-2-Y5CeyCSQMfwErZROxY,878
|
331
331
|
zenml/integrations/kubeflow/flavors/kubeflow_orchestrator_flavor.py,sha256=b7W4oASHLYN9o2n__-W3zajb_MXhPaY0UutecsW0Xw4,10381
|
332
332
|
zenml/integrations/kubeflow/orchestrators/__init__.py,sha256=J879DBt9WbpojBTdOXy7CO6F5OuTMntBeZ8aUY2EGO8,821
|
333
|
-
zenml/integrations/kubeflow/orchestrators/kubeflow_orchestrator.py,sha256=
|
333
|
+
zenml/integrations/kubeflow/orchestrators/kubeflow_orchestrator.py,sha256=lPQSQn6Jp2oJxULG_G8UcbE_bgw_9XTlAjdsujahWbY,38195
|
334
334
|
zenml/integrations/kubeflow/orchestrators/local_deployment_utils.py,sha256=qszoOdvBpgIp40XkncphXAr9dRKnyZzGiz2mJ56bYmw,15448
|
335
335
|
zenml/integrations/kubernetes/__init__.py,sha256=k1bfrdI1u5RBnAh7yT4w-m-4SWgZ7b4L5uu7dPRc0SI,1809
|
336
336
|
zenml/integrations/kubernetes/flavors/__init__.py,sha256=a5gU45qCj3FkLwl_uVjlIkL_2F5DHk-w1gdcZrvVjBI,1266
|
@@ -338,7 +338,7 @@ zenml/integrations/kubernetes/flavors/kubernetes_orchestrator_flavor.py,sha256=8
|
|
338
338
|
zenml/integrations/kubernetes/flavors/kubernetes_step_operator_flavor.py,sha256=xFO7cSusji-mgbRrt4mU29gdyC9iEjEHKtomdFLp9mM,6265
|
339
339
|
zenml/integrations/kubernetes/orchestrators/__init__.py,sha256=TJID3OTieZBox36WpQpzD0jdVRA_aZVcs_bNtfXS8ik,811
|
340
340
|
zenml/integrations/kubernetes/orchestrators/kube_utils.py,sha256=N66GH5ac22Xm_A3nr162kbFBhMeypSFaQjOQRHlGXIQ,18942
|
341
|
-
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator.py,sha256=
|
341
|
+
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator.py,sha256=qmF3i9Zvo2mMtF9WW80SWIPnbths9L_HEUGYZ_OZSus,26575
|
342
342
|
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator_entrypoint.py,sha256=WAeZH5ro1k_edCoE4y2nhX-1lGS_0EEFwzSbp1BItRw,13010
|
343
343
|
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator_entrypoint_configuration.py,sha256=KjHfQK9VQEQkkkM2i9w51AzqolgIU01M5dgb2YGamvY,2754
|
344
344
|
zenml/integrations/kubernetes/orchestrators/manifest_utils.py,sha256=QmK0HrAMalalcQMyG0rqBysoB3srQ4ywnKARdf-LtFc,14083
|
@@ -371,7 +371,7 @@ zenml/integrations/lightning/__init__.py,sha256=7KUAVme70aJ-mWcuDzhrtY73iKmjW1ha
|
|
371
371
|
zenml/integrations/lightning/flavors/__init__.py,sha256=Ma949QQTTYw1Zw1fo6zSUXomXfXQRTPHY9N2wZGweMA,883
|
372
372
|
zenml/integrations/lightning/flavors/lightning_orchestrator_flavor.py,sha256=U6ewra4C8cSrnRQTlEJrY2ouR4XJ3ShnAg1fDoC9fFQ,5259
|
373
373
|
zenml/integrations/lightning/orchestrators/__init__.py,sha256=rUaCQPcbpAPy57jx8ZqEOjTJv8zigT_nCPrMdfQJ8OU,1030
|
374
|
-
zenml/integrations/lightning/orchestrators/lightning_orchestrator.py,sha256=
|
374
|
+
zenml/integrations/lightning/orchestrators/lightning_orchestrator.py,sha256=Bm32buY2Cw_iJ5YTx0KUV9FfWQgsSMAg2mpIFrSh_So,21506
|
375
375
|
zenml/integrations/lightning/orchestrators/lightning_orchestrator_entrypoint.py,sha256=VHVXZ6jZ0URLhwaIPMyDmrnrBpYvzDnqQdIoSVM9m6E,11506
|
376
376
|
zenml/integrations/lightning/orchestrators/lightning_orchestrator_entrypoint_configuration.py,sha256=B04oUPEA0X60rsjfurtsSHgyY1ejOkXxY8llWr1XD5o,2248
|
377
377
|
zenml/integrations/lightning/orchestrators/utils.py,sha256=XbBYYnmfNCnoja4InAbt_UL5hzk2fcQcvpX8dQtm2rc,2058
|
@@ -480,10 +480,10 @@ zenml/integrations/skypilot/__init__.py,sha256=PzNuJJykzfu34pTC4kSD18ARyGysuhzEW
|
|
480
480
|
zenml/integrations/skypilot/flavors/__init__.py,sha256=PzNuJJykzfu34pTC4kSD18ARyGysuhzEW8oLTm4oHuo,612
|
481
481
|
zenml/integrations/skypilot/flavors/skypilot_orchestrator_base_vm_config.py,sha256=pYr_Wi2rjh6XTpHDLYBC7guPM23MzlUoIadzMDckKMI,8840
|
482
482
|
zenml/integrations/skypilot/orchestrators/__init__.py,sha256=elo6QiImzys1m_bgu96U1HCVRepHQI1m7Jgqn6aEJ4Q,844
|
483
|
-
zenml/integrations/skypilot/orchestrators/skypilot_base_vm_orchestrator.py,sha256=
|
483
|
+
zenml/integrations/skypilot/orchestrators/skypilot_base_vm_orchestrator.py,sha256=3j6Tk9AWvy4E4H1zH5KLKS5OgZEnEh2QuepSkPQRrhY,16032
|
484
484
|
zenml/integrations/skypilot/orchestrators/skypilot_orchestrator_entrypoint.py,sha256=L8ZSbJAwZfFOS0igxw1-LBr7UxspqVyvXrvMQ8AbJbk,11143
|
485
485
|
zenml/integrations/skypilot/orchestrators/skypilot_orchestrator_entrypoint_configuration.py,sha256=wB0QKtDe6a3XyFmoFTwRRdztn7Y6PG-VSI8lHM5n47U,2243
|
486
|
-
zenml/integrations/skypilot/utils.py,sha256=
|
486
|
+
zenml/integrations/skypilot/utils.py,sha256=HipjLYsLrSI46iAKfj9livXIYpA_m2d8v5LhJ5Q94qU,8891
|
487
487
|
zenml/integrations/skypilot_aws/__init__.py,sha256=U8G0PeQyGcKtQ8NR0YG3CI1K3SxD77_-3s-t4mvFZYA,1722
|
488
488
|
zenml/integrations/skypilot_aws/flavors/__init__.py,sha256=UGL7NuZ2BkB5IxL9WUHmGtlsuUzYw2B-5NPc-ZqGVPY,1006
|
489
489
|
zenml/integrations/skypilot_aws/flavors/skypilot_orchestrator_aws_vm_flavor.py,sha256=PqcUCXRyJoT7jmR15A5d7N5NJxXkgLKWm8BC3YW6Omw,3789
|
@@ -532,7 +532,7 @@ zenml/integrations/tekton/__init__.py,sha256=fR4Swt09E3VWCV-5to3zbCOaZcsDPtDs22z
|
|
532
532
|
zenml/integrations/tekton/flavors/__init__.py,sha256=-S5XuwcZKWyGb9tVfl_gEFJj1KSXX6kwIfe-EhE0TmM,864
|
533
533
|
zenml/integrations/tekton/flavors/tekton_orchestrator_flavor.py,sha256=XgFgzJUlje9J1o5zwBvs_ycpgQjGdi50KZFA9_tT0vc,8268
|
534
534
|
zenml/integrations/tekton/orchestrators/__init__.py,sha256=yCJEM-PCechO4DF_YQeg82y76nwBKeXTy_SIXRWX2DE,811
|
535
|
-
zenml/integrations/tekton/orchestrators/tekton_orchestrator.py,sha256=
|
535
|
+
zenml/integrations/tekton/orchestrators/tekton_orchestrator.py,sha256=JsB9FmN-XJQBy7SJAgoQVk15ramL2vTrH0xFF7-8D1s,35228
|
536
536
|
zenml/integrations/tensorboard/__init__.py,sha256=mrzcQooqOlOYrzGLyZxxn1VPl99ot9Usg75akPC0Uc0,1612
|
537
537
|
zenml/integrations/tensorboard/services/__init__.py,sha256=Y-YVPLxJkFSpXNDZSk8gEBISsXJGk_DgGIyVIIFIa40,798
|
538
538
|
zenml/integrations/tensorboard/services/tensorboard_service.py,sha256=OgIO0UTndzGqiDz_OJjCzm9zHa0F0P7kjxzrz83U77g,4434
|
@@ -618,7 +618,7 @@ zenml/model_deployers/__init__.py,sha256=oVBLtTfrNenl5OI1iqtQUvJ0vpocRVUN_HIt8qp
|
|
618
618
|
zenml/model_deployers/base_model_deployer.py,sha256=Z5-E_zC0Ss5OQhUBz9YKeVgS2MJOzuNz2aBzqI5eo4U,24610
|
619
619
|
zenml/model_registries/__init__.py,sha256=wA9Vzo0w_e9zuXOVURB9w8oMLSnTaimXcxg_Nb7O3b0,1238
|
620
620
|
zenml/model_registries/base_model_registry.py,sha256=NXviKlREKv56JJaS1skG0dXgP0YOzZJN7kTxqw-cw7U,17524
|
621
|
-
zenml/models/__init__.py,sha256=
|
621
|
+
zenml/models/__init__.py,sha256=pxwOM1cJS3N5pmCPt3P_LzjStOBI0WDwmdzEo7numqM,24238
|
622
622
|
zenml/models/v2/__init__.py,sha256=LGMIUJi19sOsvo54roZSQwDp_czNQYtenqd_frTLIhU,613
|
623
623
|
zenml/models/v2/base/__init__.py,sha256=knhroJ2h0uHBCGzAiBBGJEiuhEA3cwI6XYBRIyXdbkQ,613
|
624
624
|
zenml/models/v2/base/base.py,sha256=Oz6iWCaJw1ykoYe2tTvGJqalGmDp0tRS9r1NpBx8WsM,16222
|
@@ -658,9 +658,9 @@ zenml/models/v2/core/secret.py,sha256=t2SneCxe60OSvWznWPl2Z-VerUbBsTlm8SVKwaw6Pl
|
|
658
658
|
zenml/models/v2/core/server_settings.py,sha256=NNNsYM2AwfsPmA2kfTMwqxn0__9WDoii52n2DNxrcq0,6263
|
659
659
|
zenml/models/v2/core/service.py,sha256=PeI036PIVG0zX5EiYPsx7h5LTRC8hlmfdeClKff-IaU,16106
|
660
660
|
zenml/models/v2/core/service_account.py,sha256=-1c9Et9Ma4_OHOZxIHjVnLJAaLLxhpoLEyGKkwc1Yx8,6619
|
661
|
-
zenml/models/v2/core/service_connector.py,sha256=
|
661
|
+
zenml/models/v2/core/service_connector.py,sha256=V1zWxTpo9ABCxRfK327w7CV21n5XWaPHgIR6CE2zHNk,38628
|
662
662
|
zenml/models/v2/core/stack.py,sha256=3IKofEaKprAtYNbIrKvcYs5IABTbCqxcfJSXC3Q0fYM,13332
|
663
|
-
zenml/models/v2/core/step_run.py,sha256=
|
663
|
+
zenml/models/v2/core/step_run.py,sha256=IroHjFYPy8uk4AiBPYbNppT54Gl4MFHl8V_taUP_l9g,21162
|
664
664
|
zenml/models/v2/core/tag.py,sha256=60hCZuHAHy7lsYFkTDw7hK0zZz2eG7jx8l9VY7Hh-LQ,7100
|
665
665
|
zenml/models/v2/core/tag_resource.py,sha256=H7CPj9oaUpym8vSkwuYSJ6_rWfHMEKVRedPw2kyxmII,2640
|
666
666
|
zenml/models/v2/core/trigger.py,sha256=L6-pzWPM2HFsfA6-6rM1XeHx4UChZrIY58G6ZG1PA10,12782
|
@@ -681,20 +681,20 @@ zenml/models/v2/misc/stack_deployment.py,sha256=PgQevLjvHTpsecY_rzrXesr7jiGms7rH
|
|
681
681
|
zenml/models/v2/misc/statistics.py,sha256=ajce9rHC2bBylLzOmLfcOBSbTnJD67Y8n5YKCYh0gV0,1255
|
682
682
|
zenml/models/v2/misc/tag.py,sha256=jUoz7wqMpDFlIUmvj4PVq8NYJJB7TMCcdRfW-DAABCU,974
|
683
683
|
zenml/models/v2/misc/user_auth.py,sha256=1-yafNA9qK4wL8ToROjaklTVI7Mj9va0t80_4wm7w3U,6988
|
684
|
-
zenml/orchestrators/__init__.py,sha256=
|
685
|
-
zenml/orchestrators/base_orchestrator.py,sha256=
|
684
|
+
zenml/orchestrators/__init__.py,sha256=Nhmc6U-q6c8TEH1Jb5l8XaKnc4KmLNspDpvvV5TcvzQ,2007
|
685
|
+
zenml/orchestrators/base_orchestrator.py,sha256=1L2oJTNpVWUu5ndqyQPdcf2S5ebM7r2IHHrFatV6kPQ,14612
|
686
686
|
zenml/orchestrators/cache_utils.py,sha256=QkmTs-ANfXve9_QzTqgGlyulZDEWOngoTcsiSjG5aA8,5906
|
687
687
|
zenml/orchestrators/containerized_orchestrator.py,sha256=rdebgBW0Bk--JcHcT0NpLkAbyhY0VS5xO1uwWEgkLpA,3230
|
688
688
|
zenml/orchestrators/dag_runner.py,sha256=4oAGc52nHv8HeI_Vj7GH1jzjJom1uwUJ_la9usQoOFY,9404
|
689
|
-
zenml/orchestrators/input_utils.py,sha256=
|
689
|
+
zenml/orchestrators/input_utils.py,sha256=dSnL4KDLARY4Ldn3CI61sfCOcgsc2RfLue83WkgRrio,7950
|
690
690
|
zenml/orchestrators/local/__init__.py,sha256=qlU91hgqGKeycw-Qntrn-iMuoMTaNrq-RgfOFeqwlM4,662
|
691
|
-
zenml/orchestrators/local/local_orchestrator.py,sha256=
|
691
|
+
zenml/orchestrators/local/local_orchestrator.py,sha256=KCzc901_wrb1DPTDu_IY6HFxTghe2oiLYPAdxEpj7K4,6033
|
692
692
|
zenml/orchestrators/local_docker/__init__.py,sha256=k8J68ydy6HmmvE9tWo32g761H8P_Dw4AxWNf4UMpsbs,669
|
693
|
-
zenml/orchestrators/local_docker/local_docker_orchestrator.py,sha256=
|
693
|
+
zenml/orchestrators/local_docker/local_docker_orchestrator.py,sha256=RA88Yq8K9-zj4JkcVoA1dDDZZeA-rSFv5tUIW1tUYa8,9771
|
694
694
|
zenml/orchestrators/output_utils.py,sha256=01vqke1ZfmfuLpgxNerF-QL2wA0VPv1zUdvlMw0OwUY,3508
|
695
|
-
zenml/orchestrators/publish_utils.py,sha256=
|
695
|
+
zenml/orchestrators/publish_utils.py,sha256=CSQKhx2f9r2knldDCuPR0lmVyRwI-Ps6Xbihfhxv21U,5477
|
696
696
|
zenml/orchestrators/step_launcher.py,sha256=6hrLj0Dr5-FcKTm3cvLVnr3PuUpaYbyEs1MRQdAVzys,18064
|
697
|
-
zenml/orchestrators/step_run_utils.py,sha256=
|
697
|
+
zenml/orchestrators/step_run_utils.py,sha256=jaH-WdJ8Bt6v8m4dD4LgOR0TRa4y50pYFRum14X8B2w,14831
|
698
698
|
zenml/orchestrators/step_runner.py,sha256=EUgKG_g0fOQ6gnB1hPSSa6UXwUKVkguC-Yj-Q0yEQXg,26632
|
699
699
|
zenml/orchestrators/topsort.py,sha256=D8evz3X47zwpXd90NMLsJD-_uCeXtV6ClzNfDUrq7cM,5784
|
700
700
|
zenml/orchestrators/utils.py,sha256=6bqLc1fmdJTXg8JUwUKs8YNbmxTuMIfWmUbUpg-7hx0,12956
|
@@ -704,7 +704,7 @@ zenml/pipelines/build_utils.py,sha256=DltGesybT8qYum4i23mvWZlVRgp7UxWdbHd1Y9ySv5
|
|
704
704
|
zenml/pipelines/pipeline_context.py,sha256=4BixReLcPo33VtNBDrMwnJqjKTinHjmO5AOfmoeIOQM,3659
|
705
705
|
zenml/pipelines/pipeline_decorator.py,sha256=LB21QYrbFeBdUGwKBUNbdpXAxO4OOtYl5Vs_mzJNXqU,4600
|
706
706
|
zenml/pipelines/pipeline_definition.py,sha256=CVZDquIjq8WaiRwJuckTH_SxLnkR08g1FdZxCsJlcUU,59634
|
707
|
-
zenml/pipelines/run_utils.py,sha256
|
707
|
+
zenml/pipelines/run_utils.py,sha256=-f4Q32YM0qM3A678qU2L9PcyqhEm6gz2bIg5BRjCmjg,12562
|
708
708
|
zenml/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
709
709
|
zenml/plugins/base_plugin_flavor.py,sha256=88IxFW91UB_rQ8xPlfRnIhIJh7A308NEq2epMMdlOng,2530
|
710
710
|
zenml/plugins/plugin_flavor_registry.py,sha256=LsN2Q0K-7EQ9H4uvlEG62Y0C1_Ro1UwppX4cnGbEcOA,10862
|
@@ -718,9 +718,9 @@ zenml/secret/schemas/basic_auth_secret_schema.py,sha256=q-4dDtycHyWkIdZGd-qnIp4n
|
|
718
718
|
zenml/secret/schemas/gcp_secret_schema.py,sha256=tDSxPXlfh4BOSICZjfJjUukfzEyBEgxpQzk4y-OV1AE,1677
|
719
719
|
zenml/service_connectors/__init__.py,sha256=gIBAVUPBZtdO6JtEBCixy9YG4wZRA1mnaxaGAxi3T1Q,645
|
720
720
|
zenml/service_connectors/docker_service_connector.py,sha256=_6WPqYCcSUf8JPakipbkJRvaN2ghhY7zCr38WCHG0SI,13218
|
721
|
-
zenml/service_connectors/service_connector.py,sha256=
|
721
|
+
zenml/service_connectors/service_connector.py,sha256=2p3s1B7mi6lnE4d2Gp32QJyuoRum-xVBPAhAs5iWj3U,53477
|
722
722
|
zenml/service_connectors/service_connector_registry.py,sha256=U5MdC9M_RfkHK56AoERB9HtDP4vxk2hDFoZRlWzBA9g,9608
|
723
|
-
zenml/service_connectors/service_connector_utils.py,sha256=
|
723
|
+
zenml/service_connectors/service_connector_utils.py,sha256=vfJ-r_jeSkC2aGL3jbtelppsV8Iw40hBZ41USL0ZoU0,18015
|
724
724
|
zenml/services/__init__.py,sha256=BhqBztNXLrqN-4FZr24WHP9ujP_M0plt6axQvakh1jQ,2784
|
725
725
|
zenml/services/container/__init__.py,sha256=dFHcmlXgNXjUaCR18oGQJ19-I_6f3UeAUURHjqldjTs,668
|
726
726
|
zenml/services/container/container_service.py,sha256=EJ8RM0llzCwKxVZj3Oyhu7HC0K8XNWP-VQhIutff-kw,18403
|
@@ -751,7 +751,7 @@ zenml/stack_deployments/stack_deployment.py,sha256=4032l7r1llIux_J0PGwgLP346P1tA
|
|
751
751
|
zenml/stack_deployments/utils.py,sha256=4rU0JM6wAmSLLlH7f9xk3g3EsacMHQYDTgN1OvU9pRs,1738
|
752
752
|
zenml/step_operators/__init__.py,sha256=tqj7fgnQyZubLjwUu4ITwkA-70KMQz4g37agbfF7ZgE,1228
|
753
753
|
zenml/step_operators/base_step_operator.py,sha256=ZRnY6lcEHY8xZskrKKdPhgKg2BlEoh2_kb8xCaM2D1g,3522
|
754
|
-
zenml/step_operators/step_operator_entrypoint_configuration.py,sha256=
|
754
|
+
zenml/step_operators/step_operator_entrypoint_configuration.py,sha256=wuQKmEI_ckn1CHHrxWGGdIhQyBFXG01aKC2-2b6Atjo,3690
|
755
755
|
zenml/steps/__init__.py,sha256=KKWFOmCZGLDEikOD2E5YmDA7QHo47uPV37by21WwI0U,1453
|
756
756
|
zenml/steps/base_step.py,sha256=qzW9I99PWK8brm3wdV1NEuUxGFlMvrmqNh3YjNKUkgg,44312
|
757
757
|
zenml/steps/decorated_step.py,sha256=C8Ng5PCLc9eql4JF1N345HQ6LyC1qCUdTnysUTeoAJs,1315
|
@@ -778,14 +778,13 @@ zenml/utils/env_utils.py,sha256=2--2DDUt3gPOvCNVyobBtAciikQ0OEXs5WWp7NvYuKo,5276
|
|
778
778
|
zenml/utils/filesync_model.py,sha256=9ibsIr2HJfkEQ41upQd4uJ79ZhzB0MHS85GOGOAQ19Y,5470
|
779
779
|
zenml/utils/function_utils.py,sha256=bznRrCrQIJ3Joc-QQ8ynDyn9AvyIcR61bzLnaXQV3tc,8109
|
780
780
|
zenml/utils/git_utils.py,sha256=O2f6PUpDuMQrcmkcGXIhbJQpTzLM7p8PyiKWjcIuWqM,1831
|
781
|
-
zenml/utils/integration_utils.py,sha256=jQVTnOjB9AQUerU7UiIXtDfcHnUrkMJDJKx5JZaPTAQ,1186
|
782
781
|
zenml/utils/io_utils.py,sha256=S-5dpeOCgEMV7R5y2gZxuWdAwRBunx9sBZi_WwY13Hw,7728
|
783
782
|
zenml/utils/json_utils.py,sha256=uAOL6swtVp0WxC5Ki71olbespGfT13C1eHHTTW2b7Hw,3679
|
784
783
|
zenml/utils/materializer_utils.py,sha256=DNlO113FXjZ0Y67KpvDB5NiWen1tRZ0E-A_vTjE-BME,1815
|
785
784
|
zenml/utils/metadata_utils.py,sha256=aLDLW25RKzS_uQCjfMKpqbUi4YRd85ioCPfRKsgnADc,11723
|
786
785
|
zenml/utils/networking_utils.py,sha256=zTDbOMkMPRWiWLZ2ccchd37rvvZWIIh0Kr9dZE-VJAs,7845
|
787
786
|
zenml/utils/notebook_utils.py,sha256=VBMU9Qnx_NdpB1TQtnej56L0hRr11fwniOva3ltUT90,4113
|
788
|
-
zenml/utils/package_utils.py,sha256=
|
787
|
+
zenml/utils/package_utils.py,sha256=OGtLPyoFBnuF74H5Ad_AiEMg3DB9wYFY2DP1Rh-uwoY,5887
|
789
788
|
zenml/utils/pagination_utils.py,sha256=TufckOqOKeDPwE3ySefL05zOzGUUA2Fqx_QFVhE2so0,1445
|
790
789
|
zenml/utils/pipeline_docker_image_builder.py,sha256=Gp_eKg_LEdyBUSuZDC_PReyPHlqonKNwjxPJJLoAFY0,30256
|
791
790
|
zenml/utils/proxy_utils.py,sha256=fgRlLa9pfXJDoxtB31_YP7DClOMQLek_nMmM0et6i3w,7241
|
@@ -1062,7 +1061,7 @@ zenml/zen_server/routers/schedule_endpoints.py,sha256=m8TVhncapdtQqPm5EEm7CAeGr_
|
|
1062
1061
|
zenml/zen_server/routers/secrets_endpoints.py,sha256=VgepInQHZXt-d8IAinftHs1n9il6hTD1qca6w5Pnnsk,9302
|
1063
1062
|
zenml/zen_server/routers/server_endpoints.py,sha256=Aci-7TB5VZylmasEYc2tVpG7Npgtp6Dj56nrmy7mMmc,8133
|
1064
1063
|
zenml/zen_server/routers/service_accounts_endpoints.py,sha256=q-vFzzYYorqaOPUnESQU06h2I-BaZvIyPxCAhQ4gLPw,12086
|
1065
|
-
zenml/zen_server/routers/service_connectors_endpoints.py,sha256=
|
1064
|
+
zenml/zen_server/routers/service_connectors_endpoints.py,sha256=4naB7DXFqor0E3z67nVFf6dyPTbdel8f-lGAXkKD-9s,17227
|
1066
1065
|
zenml/zen_server/routers/service_endpoints.py,sha256=37CY-22h4hTscEkBByKJqdHcOWsP2lTGAiY2WgBPB0w,5566
|
1067
1066
|
zenml/zen_server/routers/stack_components_endpoints.py,sha256=MBQ3iz29WN1n9T_BLpd2BtWxWoLIBP6QT7BfaAkGEMY,8580
|
1068
1067
|
zenml/zen_server/routers/stack_deployment_endpoints.py,sha256=r7N4UaDAwj9ACYfdyUofRHpNPRrzWl-vmGoSErN9oYI,5381
|
@@ -1225,6 +1224,7 @@ zenml/zen_stores/migrations/versions/4e1972485075_endpoint_artifact_deployment_a
|
|
1225
1224
|
zenml/zen_stores/migrations/versions/4f66af55fbb9_rename_model_config_model_to_model_.py,sha256=nNu27CCTNCVUAejFCKa-Xhvu8IGZKTTewBohXKl3tT8,2624
|
1226
1225
|
zenml/zen_stores/migrations/versions/5330ba58bf20_rename_tables_and_foreign_keys.py,sha256=3Yj-ON3BC7weqZX0mZKUcapIRlhJ0E-8BeYG0FSoJF4,10579
|
1227
1226
|
zenml/zen_stores/migrations/versions/5994f9ad0489_introduce_role_permissions.py,sha256=7Uwsil6jnmfcHzC9yOtZYOgjNiZbVcfVlS656wtFRo4,4714
|
1227
|
+
zenml/zen_stores/migrations/versions/5bb25e95849c_add_internal_secrets.py,sha256=YuFFT2esGcNsssS_DciJwknZ8ixzMEG9H_6tOGAlo5Q,1852
|
1228
1228
|
zenml/zen_stores/migrations/versions/5cc3f41cf048_add_save_models_to_registry.py,sha256=TkLn6NfIIcIKmJwMuf6NFOnH6b53R0nT7bgk2yAUloI,1125
|
1229
1229
|
zenml/zen_stores/migrations/versions/6119cd9b93c2_tags_table.py,sha256=oZgZBagiu74roFcolyeniW3h2G9pRaJq06ooM9js7Os,5263
|
1230
1230
|
zenml/zen_stores/migrations/versions/623a234c11f5_add_sdk_docs_url_to_flavors.py,sha256=u6wy3cr-dR6u4jEoOTK5NwhmjniKihy3Yk_XtCoFDQk,902
|
@@ -1290,7 +1290,7 @@ zenml/zen_stores/migrations/versions/f49904a80aa7_increase_length_of_artifact_ta
|
|
1290
1290
|
zenml/zen_stores/migrations/versions/f76a368a25a5_add_stack_description.py,sha256=u8fRomaasFeGhxvM2zU-Ab-AEpVsWm5zRcixxKFXdRw,904
|
1291
1291
|
zenml/zen_stores/migrations/versions/fbd7f18ced1e_increase_step_run_field_lengths.py,sha256=kn-ng5EHe_mmLfffIFbz7T59z-to3oMx8III_4wOsz4,1956
|
1292
1292
|
zenml/zen_stores/migrations/versions/ff538a321a92_migrate_onboarding_state.py,sha256=gsUFLJQ32_o9U35JCVqkqJVVk-zfq3yel25hXhzVFm4,3829
|
1293
|
-
zenml/zen_stores/rest_zen_store.py,sha256=
|
1293
|
+
zenml/zen_stores/rest_zen_store.py,sha256=LKp29ccTdBxHMp_MbgXy2RBcDfl5AIwL-KAvU0BhK-w,163916
|
1294
1294
|
zenml/zen_stores/schemas/__init__.py,sha256=myNtX0C4sr3spHJi7fyQWY8DGOD1UVrUWzzIIQXrLsg,4503
|
1295
1295
|
zenml/zen_stores/schemas/action_schemas.py,sha256=jymEro5r20seTpRcAr5iZw-g8rXZRSZFEbiEm_iFaj8,7618
|
1296
1296
|
zenml/zen_stores/schemas/api_key_schemas.py,sha256=RJS-lH7AHHAe9oXA0CGWvtbrmYgVfNP9nMa7rhtRNnY,8379
|
@@ -1315,9 +1315,9 @@ zenml/zen_stores/schemas/run_metadata_schemas.py,sha256=G94rT4ldluMSnf9rm7R_9rw_
|
|
1315
1315
|
zenml/zen_stores/schemas/run_template_schemas.py,sha256=dmF0N5dXc-lIEdMBPvobHS0f6NROGbMBm6OH-CGr2lo,12359
|
1316
1316
|
zenml/zen_stores/schemas/schedule_schema.py,sha256=Aw5HegFlb3XMA2raV2Fss-iBiBZW3_idbs3OJK4tpio,8961
|
1317
1317
|
zenml/zen_stores/schemas/schema_utils.py,sha256=Xahifq2fJ5szXCM00ZZ6461Div9Suatzl6sy9hVhPkk,3612
|
1318
|
-
zenml/zen_stores/schemas/secret_schemas.py,sha256=
|
1318
|
+
zenml/zen_stores/schemas/secret_schemas.py,sha256=gFm5X6-FJDHk7Eix6_3Xbevvne0qyUMGLIXxcNUHQSY,10741
|
1319
1319
|
zenml/zen_stores/schemas/server_settings_schemas.py,sha256=usBE-idRrmK-LeLN0zDtCRCGP51YTnyKfIx5GZ0_ATg,4275
|
1320
|
-
zenml/zen_stores/schemas/service_connector_schemas.py,sha256
|
1320
|
+
zenml/zen_stores/schemas/service_connector_schemas.py,sha256=SpzFZTbfxypFtMLBujPSlGOpt-kzjcHfq3IoBghPizI,11137
|
1321
1321
|
zenml/zen_stores/schemas/service_schemas.py,sha256=Fn_DyGm-PF-qN1TPZA3Q8AhrnUOTSIX0V_MD0laZ2Bk,10685
|
1322
1322
|
zenml/zen_stores/schemas/stack_schemas.py,sha256=DOPoNwblTqN83RpnD6cjyF80VeplA1BGUX8yuulpzKk,6829
|
1323
1323
|
zenml/zen_stores/schemas/step_run_schemas.py,sha256=NmPlpychrgqRdAkosiBbfNTcYQBSohRipMnlHY5M0zw,18133
|
@@ -1332,13 +1332,13 @@ zenml/zen_stores/secrets_stores/base_secrets_store.py,sha256=4yrbSnykaEoTcNir2K0
|
|
1332
1332
|
zenml/zen_stores/secrets_stores/gcp_secrets_store.py,sha256=qcVyXlDQ3Ur1RQVyzvMYPK8TFJOpWtewnKm3DgOnkvw,12967
|
1333
1333
|
zenml/zen_stores/secrets_stores/hashicorp_secrets_store.py,sha256=5err1a-TrV3SR5o-RTCpBxQsnrtkD4_Xx7Ag1dA2Hg0,11672
|
1334
1334
|
zenml/zen_stores/secrets_stores/secrets_store_interface.py,sha256=Q2Jbnt2Pp7NGlR-u1YBfRZV2g8su2Fd0ArBMdksAE-Q,2819
|
1335
|
-
zenml/zen_stores/secrets_stores/service_connector_secrets_store.py,sha256=
|
1335
|
+
zenml/zen_stores/secrets_stores/service_connector_secrets_store.py,sha256=DrXGMkBxQIy2n_kkux5Xh2OM3Ks3MOpqP1D4aY8bfyY,7047
|
1336
1336
|
zenml/zen_stores/secrets_stores/sql_secrets_store.py,sha256=LPFW757WCJLP1S8vrvjsrl2Tf1yo281xUTjSBsos4qk,8788
|
1337
|
-
zenml/zen_stores/sql_zen_store.py,sha256=
|
1337
|
+
zenml/zen_stores/sql_zen_store.py,sha256=1BI6TLVHtXzQbJTgzYsQLVnUAUbir81rQPDSZjhnANg,479677
|
1338
1338
|
zenml/zen_stores/template_utils.py,sha256=GbJ7LgGVYHSCKPEA8RNTxPoVTWqpC77F_lGzjJ4O1Fw,9220
|
1339
|
-
zenml/zen_stores/zen_store_interface.py,sha256=
|
1340
|
-
zenml_nightly-0.83.1.
|
1341
|
-
zenml_nightly-0.83.1.
|
1342
|
-
zenml_nightly-0.83.1.
|
1343
|
-
zenml_nightly-0.83.1.
|
1344
|
-
zenml_nightly-0.83.1.
|
1339
|
+
zenml/zen_stores/zen_store_interface.py,sha256=weiSULdI9AsbCE10a5TcwtybX-BJs9hKhjPJnTapWv4,93023
|
1340
|
+
zenml_nightly-0.83.1.dev20250626.dist-info/LICENSE,sha256=wbnfEnXnafPbqwANHkV6LUsPKOtdpsd-SNw37rogLtc,11359
|
1341
|
+
zenml_nightly-0.83.1.dev20250626.dist-info/METADATA,sha256=hV4Urxo7qti3gd7GaFCpQ0FzMrBtfgracdykJ0hF97E,24316
|
1342
|
+
zenml_nightly-0.83.1.dev20250626.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
1343
|
+
zenml_nightly-0.83.1.dev20250626.dist-info/entry_points.txt,sha256=QK3ETQE0YswAM2mWypNMOv8TLtr7EjnqAFq1br_jEFE,43
|
1344
|
+
zenml_nightly-0.83.1.dev20250626.dist-info/RECORD,,
|
zenml/utils/integration_utils.py
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
# Copyright (c) ZenML GmbH 2023. 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
|
-
# http://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
|
-
"""Util functions for integration."""
|
15
|
-
|
16
|
-
import re
|
17
|
-
from typing import Optional, Tuple
|
18
|
-
|
19
|
-
|
20
|
-
def parse_requirement(requirement: str) -> Tuple[Optional[str], Optional[str]]:
|
21
|
-
"""Parse a requirement string into name and extras.
|
22
|
-
|
23
|
-
Args:
|
24
|
-
requirement: A requirement string.
|
25
|
-
|
26
|
-
Returns:
|
27
|
-
A tuple of name and extras.
|
28
|
-
"""
|
29
|
-
if match := re.match(
|
30
|
-
r"([a-zA-Z0-9\-_]+)(?![^\[]*\s)(\[[a-zA-Z0-9\-_,]+\])?", requirement
|
31
|
-
):
|
32
|
-
name, extras = match.groups()
|
33
|
-
return (None, None) if " " in requirement else (name, extras)
|
34
|
-
return None, None
|
{zenml_nightly-0.83.1.dev20250624.dist-info → zenml_nightly-0.83.1.dev20250626.dist-info}/LICENSE
RENAMED
File without changes
|
{zenml_nightly-0.83.1.dev20250624.dist-info → zenml_nightly-0.83.1.dev20250626.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|