zenml-nightly 0.81.0.dev20250430__py3-none-any.whl → 0.82.0.dev20250504__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 CHANGED
@@ -1 +1 @@
1
- 0.81.0.dev20250430
1
+ 0.82.0.dev20250504
@@ -53,6 +53,9 @@ class AzureIntegration(Integration):
53
53
  # an attribute that was removed in Numpy 2.0. However, AzureML itself
54
54
  # does not have a limitation on numpy.
55
55
  "numpy<2.0",
56
+ # Marshmallow>4.0 leads to the following error with the AzureML SDK:
57
+ # ImportError: cannot import name 'FieldInstanceResolutionError' from 'marshmallow.utils'
58
+ "marshmallow<4.0.0",
56
59
  ]
57
60
  REQUIREMENTS_IGNORED_ON_UNINSTALL = ["kubernetes", "numpy"]
58
61
 
@@ -883,7 +883,7 @@ class KubeflowOrchestrator(ContainerizedOrchestrator):
883
883
  f"Error while trying to fetch kubeflow cookie: {errh}"
884
884
  )
885
885
 
886
- cookie_dict: Dict[str, str] = session.cookies.get_dict() # type: ignore[no-untyped-call]
886
+ cookie_dict: Dict[str, str] = session.cookies.get_dict() # type: ignore[no-untyped-call, unused-ignore]
887
887
 
888
888
  if "authservice_session" not in cookie_dict:
889
889
  raise RuntimeError("Invalid username and/or password!")
@@ -243,7 +243,7 @@ class TektonOrchestrator(ContainerizedOrchestrator):
243
243
  raise RuntimeError(
244
244
  f"Error while trying to fetch tekoton cookie: {errh}"
245
245
  )
246
- cookie_dict: Dict[str, str] = session.cookies.get_dict() # type: ignore[no-untyped-call]
246
+ cookie_dict: Dict[str, str] = session.cookies.get_dict() # type: ignore[no-untyped-call, unused-ignore]
247
247
 
248
248
  if "authservice_session" not in cookie_dict:
249
249
  raise RuntimeError("Invalid username and/or password!")
@@ -0,0 +1,23 @@
1
+ """Release [0.82.0].
2
+
3
+ Revision ID: 0.82.0
4
+ Revises: 0.81.0
5
+ Create Date: 2025-04-30 14:10:24.569601
6
+
7
+ """
8
+
9
+ # revision identifiers, used by Alembic.
10
+ revision = "0.82.0"
11
+ down_revision = "0.81.0"
12
+ branch_labels = None
13
+ depends_on = None
14
+
15
+
16
+ def upgrade() -> None:
17
+ """Upgrade database schema and/or data, creating a new revision."""
18
+ pass
19
+
20
+
21
+ def downgrade() -> None:
22
+ """Downgrade database schema and/or data back to the previous revision."""
23
+ pass
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: zenml-nightly
3
- Version: 0.81.0.dev20250430
3
+ Version: 0.82.0.dev20250504
4
4
  Summary: ZenML: Write production-ready ML code.
5
5
  License: Apache-2.0
6
6
  Keywords: machine learning,production,pipeline,mlops,devops
@@ -532,7 +532,7 @@ the Apache License Version 2.0.
532
532
  <a href="https://github.com/zenml-io/zenml-projects">Projects Showcase</a>
533
533
  <br />
534
534
  <br />
535
- 🎉 Version 0.81.0 is out. Check out the release notes
535
+ 🎉 Version 0.82.0 is out. Check out the release notes
536
536
  <a href="https://github.com/zenml-io/zenml/releases">here</a>.
537
537
  <br />
538
538
  🖥️ Download our VS Code Extension <a href="https://marketplace.visualstudio.com/items?itemName=ZenML.zenml-vscode">here</a>.
@@ -1,5 +1,5 @@
1
1
  zenml/README.md,sha256=827dekbOWAs1BpW7VF1a4d7EbwPbjwccX-2zdXBENZo,1777
2
- zenml/VERSION,sha256=DhrnhMxQmir9PMOc8-PWUhYmVmG6yK84dFykwXtRW3c,19
2
+ zenml/VERSION,sha256=MFngEFnzlQzU_WWZVIob-EUSQLbCtDZJgq7Wgsts938,19
3
3
  zenml/__init__.py,sha256=CKEyepFK-7akXYiMrNVh92Nb01Cjs23w4_YyI6sgdc8,2242
4
4
  zenml/actions/__init__.py,sha256=mrt6wPo73iKRxK754_NqsGyJ3buW7RnVeIGXr1xEw8Y,681
5
5
  zenml/actions/base_action.py,sha256=UcaHev6BTuLDwuswnyaPjdA8AgUqB5xPZ-lRtuvf2FU,25553
@@ -153,7 +153,7 @@ zenml/integrations/aws/service_connectors/aws_service_connector.py,sha256=7H69Io
153
153
  zenml/integrations/aws/step_operators/__init__.py,sha256=HK5oIqLixYKUKoiN4LnqTyGjAZJUdUqWYGqJhFSWyo0,817
154
154
  zenml/integrations/aws/step_operators/sagemaker_step_operator.py,sha256=8g9p9eHvZkg2LY2lnWPVkriB7Jr_LbQcw2HQFjVgZ6E,10330
155
155
  zenml/integrations/aws/step_operators/sagemaker_step_operator_entrypoint_config.py,sha256=2cXroe6-bXyHVkO5yPnZagNpqx6MrMDcvuvNr8J2j-A,1581
156
- zenml/integrations/azure/__init__.py,sha256=NVQo54b5deZ_2lNPA5psnWKXexBFTq8PYWSRKfg7mE8,2899
156
+ zenml/integrations/azure/__init__.py,sha256=iJ8smVn76fIuOeeJV5txrBfBS0PyRKUNt9aVkL3Ucic,3103
157
157
  zenml/integrations/azure/artifact_stores/__init__.py,sha256=dlIwbpgjE0Hy4rhMbelNJHVKm4t8tj_hRu9mQ_cEIAg,820
158
158
  zenml/integrations/azure/artifact_stores/azure_artifact_store.py,sha256=wgXoZFdK1tT4XneOJTOr3uYd5e6dS5ruyiNo8xldCDk,12236
159
159
  zenml/integrations/azure/azureml_utils.py,sha256=kl_ld7jgWQgVBmagO46ADvfIKvBK3qaGboZom2C5UIA,7561
@@ -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=OuTGD7ggsw_tYILOTRT1xz8uiTJNhp0Pkx3Sz_MMFWM,38521
333
+ zenml/integrations/kubeflow/orchestrators/kubeflow_orchestrator.py,sha256=ihM8s0Ne7pru-fPdWZK_0xA4DtTZFJrs9pndf8Ac420,38536
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
@@ -531,7 +531,7 @@ zenml/integrations/tekton/__init__.py,sha256=fR4Swt09E3VWCV-5to3zbCOaZcsDPtDs22z
531
531
  zenml/integrations/tekton/flavors/__init__.py,sha256=-S5XuwcZKWyGb9tVfl_gEFJj1KSXX6kwIfe-EhE0TmM,864
532
532
  zenml/integrations/tekton/flavors/tekton_orchestrator_flavor.py,sha256=XgFgzJUlje9J1o5zwBvs_ycpgQjGdi50KZFA9_tT0vc,8268
533
533
  zenml/integrations/tekton/orchestrators/__init__.py,sha256=yCJEM-PCechO4DF_YQeg82y76nwBKeXTy_SIXRWX2DE,811
534
- zenml/integrations/tekton/orchestrators/tekton_orchestrator.py,sha256=tRhMNhe9a7hVr1HFYMdfH15nB_xrVlJwrLs9R8qbXec,34614
534
+ zenml/integrations/tekton/orchestrators/tekton_orchestrator.py,sha256=qYYLYFvueOKQ68E_Y6KeogdCUGS-SbNpWkdcLxs4H_k,34629
535
535
  zenml/integrations/tensorboard/__init__.py,sha256=mrzcQooqOlOYrzGLyZxxn1VPl99ot9Usg75akPC0Uc0,1612
536
536
  zenml/integrations/tensorboard/services/__init__.py,sha256=Y-YVPLxJkFSpXNDZSk8gEBISsXJGk_DgGIyVIIFIa40,798
537
537
  zenml/integrations/tensorboard/services/tensorboard_service.py,sha256=OgIO0UTndzGqiDz_OJjCzm9zHa0F0P7kjxzrz83U77g,4434
@@ -1162,6 +1162,7 @@ zenml/zen_stores/migrations/versions/0.80.0_release.py,sha256=6_lo57UdjKXKr60Z8J
1162
1162
  zenml/zen_stores/migrations/versions/0.80.1_release.py,sha256=uyS3lbqUCVMr_3mG6WMi5v1rGGpWhgqYI6LocBumwCI,462
1163
1163
  zenml/zen_stores/migrations/versions/0.80.2_release.py,sha256=fsM4kc-d82s0xXqUiD5tvMPzY7fGoI4KsZa6z94chuE,462
1164
1164
  zenml/zen_stores/migrations/versions/0.81.0_release.py,sha256=iiNGlHCVt2IMoQTaN9YIJyHMX3XmGtQVHMxZmyjyD8A,462
1165
+ zenml/zen_stores/migrations/versions/0.82.0_release.py,sha256=xBZ8ah1X99l_vUZ8bHC7Pa8caiU8kUhs-SZnGEVAIYY,450
1165
1166
  zenml/zen_stores/migrations/versions/026d4577b6a0_add_code_path.py,sha256=hXLzvQcylNrbCVD6vha52PFkSPNC2klW9kA0vuQX_cE,1091
1166
1167
  zenml/zen_stores/migrations/versions/03742aa7fdd7_add_secrets.py,sha256=gewKqu1AnzvNTjVvK1eaAwP0hVneWDUyDRSLTvRCdpg,1587
1167
1168
  zenml/zen_stores/migrations/versions/0392807467dc_add_build_duration.py,sha256=YlkDBlfBBv45FsrMO11YcdRn4Maqmlg77t8gWJO4DfA,982
@@ -1317,8 +1318,8 @@ zenml/zen_stores/secrets_stores/sql_secrets_store.py,sha256=LPFW757WCJLP1S8vrvjs
1317
1318
  zenml/zen_stores/sql_zen_store.py,sha256=biOoDb2_zYmpsN-J-FSlKICYdwM9KDIe-_KN_yDf_mA,441414
1318
1319
  zenml/zen_stores/template_utils.py,sha256=GWBP5QEOyvhzndS_MLPmvh28sQaOPpPoZFXCIX9CRL4,9065
1319
1320
  zenml/zen_stores/zen_store_interface.py,sha256=fF_uL_FplnvGvM5o3jOQ8i1zHXhuhKLL2n4nvIKSR7E,92090
1320
- zenml_nightly-0.81.0.dev20250430.dist-info/LICENSE,sha256=wbnfEnXnafPbqwANHkV6LUsPKOtdpsd-SNw37rogLtc,11359
1321
- zenml_nightly-0.81.0.dev20250430.dist-info/METADATA,sha256=NooGtzQJk3DsX_btR-gj1Dq1ydo_QFoTA2MUp7Z-ERA,24304
1322
- zenml_nightly-0.81.0.dev20250430.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
1323
- zenml_nightly-0.81.0.dev20250430.dist-info/entry_points.txt,sha256=QK3ETQE0YswAM2mWypNMOv8TLtr7EjnqAFq1br_jEFE,43
1324
- zenml_nightly-0.81.0.dev20250430.dist-info/RECORD,,
1321
+ zenml_nightly-0.82.0.dev20250504.dist-info/LICENSE,sha256=wbnfEnXnafPbqwANHkV6LUsPKOtdpsd-SNw37rogLtc,11359
1322
+ zenml_nightly-0.82.0.dev20250504.dist-info/METADATA,sha256=Z0xmWvDBOQf_ZwMJ9qWCEowFTOhYfdMrTEsDF6aFes0,24304
1323
+ zenml_nightly-0.82.0.dev20250504.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
1324
+ zenml_nightly-0.82.0.dev20250504.dist-info/entry_points.txt,sha256=QK3ETQE0YswAM2mWypNMOv8TLtr7EjnqAFq1br_jEFE,43
1325
+ zenml_nightly-0.82.0.dev20250504.dist-info/RECORD,,