mlrun 1.8.0rc57__py3-none-any.whl → 1.8.0rc59__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.

Potentially problematic release.


This version of mlrun might be problematic. Click here for more details.

Files changed (39) hide show
  1. mlrun/artifacts/base.py +7 -7
  2. mlrun/artifacts/dataset.py +2 -2
  3. mlrun/artifacts/model.py +2 -2
  4. mlrun/artifacts/plots.py +4 -4
  5. mlrun/common/runtimes/constants.py +1 -1
  6. mlrun/common/schemas/artifact.py +1 -1
  7. mlrun/common/schemas/pipeline.py +1 -1
  8. mlrun/common/schemas/project.py +1 -1
  9. mlrun/common/schemas/runs.py +1 -1
  10. mlrun/datastore/datastore_profile.py +2 -2
  11. mlrun/datastore/sources.py +3 -3
  12. mlrun/datastore/targets.py +4 -4
  13. mlrun/datastore/utils.py +2 -2
  14. mlrun/db/base.py +7 -7
  15. mlrun/db/httpdb.py +14 -12
  16. mlrun/db/nopdb.py +1 -1
  17. mlrun/execution.py +1 -1
  18. mlrun/frameworks/_common/model_handler.py +2 -2
  19. mlrun/model_monitoring/api.py +4 -4
  20. mlrun/model_monitoring/applications/evidently/base.py +59 -71
  21. mlrun/model_monitoring/controller.py +24 -13
  22. mlrun/model_monitoring/tracking_policy.py +1 -1
  23. mlrun/model_monitoring/writer.py +1 -1
  24. mlrun/projects/operations.py +3 -3
  25. mlrun/projects/project.py +20 -20
  26. mlrun/render.py +5 -9
  27. mlrun/run.py +1 -1
  28. mlrun/runtimes/base.py +4 -4
  29. mlrun/runtimes/kubejob.py +2 -2
  30. mlrun/runtimes/nuclio/function.py +2 -2
  31. mlrun/runtimes/nuclio/serving.py +4 -4
  32. mlrun/runtimes/utils.py +1 -1
  33. mlrun/utils/version/version.json +2 -2
  34. {mlrun-1.8.0rc57.dist-info → mlrun-1.8.0rc59.dist-info}/METADATA +6 -6
  35. {mlrun-1.8.0rc57.dist-info → mlrun-1.8.0rc59.dist-info}/RECORD +39 -39
  36. {mlrun-1.8.0rc57.dist-info → mlrun-1.8.0rc59.dist-info}/WHEEL +1 -1
  37. {mlrun-1.8.0rc57.dist-info → mlrun-1.8.0rc59.dist-info}/entry_points.txt +0 -0
  38. {mlrun-1.8.0rc57.dist-info → mlrun-1.8.0rc59.dist-info}/licenses/LICENSE +0 -0
  39. {mlrun-1.8.0rc57.dist-info → mlrun-1.8.0rc59.dist-info}/top_level.txt +0 -0
@@ -25,6 +25,7 @@ from types import TracebackType
25
25
  from typing import Any, NamedTuple, Optional, Union, cast
26
26
 
27
27
  import nuclio_sdk
28
+ import pandas as pd
28
29
 
29
30
  import mlrun
30
31
  import mlrun.common.schemas.model_monitoring.constants as mm_constants
@@ -673,9 +674,15 @@ class MonitoringApplicationController:
673
674
  """
674
675
  logger.info("Starting monitoring controller chief")
675
676
  applications_names = []
676
- endpoints = self.project_obj.list_model_endpoints(
677
- metric_list=["last_request"]
678
- ).endpoints
677
+ endpoints = self.project_obj.list_model_endpoints(tsdb_metrics=False).endpoints
678
+ last_request_dict = self.tsdb_connector.get_last_request(
679
+ endpoint_ids=[mep.metadata.uid for mep in endpoints]
680
+ )
681
+ if isinstance(last_request_dict, pd.DataFrame):
682
+ last_request_dict = last_request_dict.set_index(
683
+ mm_constants.EventFieldType.ENDPOINT_ID
684
+ )[mm_constants.ModelEndpointSchema.LAST_REQUEST].to_dict()
685
+
679
686
  if not endpoints:
680
687
  logger.info("No model endpoints found", project=self.project)
681
688
  return
@@ -721,16 +728,20 @@ class MonitoringApplicationController:
721
728
  with schedules.ModelMonitoringSchedulesFileChief(
722
729
  self.project
723
730
  ) as schedule_file:
724
- futures = {
725
- pool.submit(
726
- self.endpoint_to_regular_event,
727
- endpoint,
728
- policy,
729
- set(applications_names),
730
- schedule_file,
731
- ): endpoint
732
- for endpoint in endpoints
733
- }
731
+ for endpoint in endpoints:
732
+ last_request = last_request_dict.get(endpoint.metadata.uid, None)
733
+ if isinstance(last_request, float):
734
+ last_request = pd.to_datetime(last_request, unit="s", utc=True)
735
+ endpoint.status.last_request = last_request
736
+ futures = {
737
+ pool.submit(
738
+ self.endpoint_to_regular_event,
739
+ endpoint,
740
+ policy,
741
+ set(applications_names),
742
+ schedule_file,
743
+ ): endpoint
744
+ }
734
745
  for future in concurrent.futures.as_completed(futures):
735
746
  if future.exception():
736
747
  exception = future.exception()
@@ -57,7 +57,7 @@ class TrackingPolicy(mlrun.model.ModelObj):
57
57
  """
58
58
  warnings.warn(
59
59
  "The `TrackingPolicy` class is deprecated from version 1.7.0 and is not "
60
- "used anymore. It will be removed in 1.9.0.",
60
+ "used anymore. It will be removed in 1.10.0.",
61
61
  FutureWarning,
62
62
  )
63
63
 
@@ -129,7 +129,7 @@ class ModelMonitoringWriter(StepToDict):
129
129
  )
130
130
  kind = event.pop(WriterEvent.EVENT_KIND, WriterEventKind.RESULT)
131
131
  result_event = _AppResultEvent(json.loads(event.pop(WriterEvent.DATA, "{}")))
132
- if not result_event: # BC for < 1.7.0, can be removed in 1.9.0
132
+ if not result_event: # BC for < 1.7.0, can be removed in 1.10.0
133
133
  result_event = _AppResultEvent(event)
134
134
  else:
135
135
  result_event.update(_AppResultEvent(event))
@@ -294,9 +294,9 @@ def build_function(
294
294
  :param force_build: Force building the image, even when no changes were made
295
295
  """
296
296
  if not overwrite_build_params:
297
- # TODO: change overwrite_build_params default to True in 1.9.0
297
+ # TODO: change overwrite_build_params default to True in 1.10.0
298
298
  warnings.warn(
299
- "The `overwrite_build_params` parameter default will change from 'False' to 'True' in 1.9.0.",
299
+ "The `overwrite_build_params` parameter default will change from 'False' to 'True' in 1.10.0.",
300
300
  mlrun.utils.OverwriteBuildParamsWarning,
301
301
  )
302
302
 
@@ -325,7 +325,7 @@ def build_function(
325
325
  skip_deployed=skip_deployed,
326
326
  )
327
327
  else:
328
- # TODO: remove filter once overwrite_build_params default is changed to True in 1.9.0
328
+ # TODO: remove filter once overwrite_build_params default is changed to True in 1.10.0
329
329
  with warnings.catch_warnings():
330
330
  warnings.simplefilter(
331
331
  "ignore", category=mlrun.utils.OverwriteBuildParamsWarning
mlrun/projects/project.py CHANGED
@@ -757,10 +757,10 @@ def _project_instance_from_struct(struct, name, allow_cross_project):
757
757
  )
758
758
 
759
759
  if allow_cross_project is None:
760
- # TODO: Remove this warning in version 1.9.0 and also fix cli to support allow_cross_project
760
+ # TODO: Remove this warning in version 1.10.0 and also fix cli to support allow_cross_project
761
761
  warnings.warn(
762
762
  f"Project {name=} is different than specified on the context's project yaml. "
763
- "This behavior is deprecated and will not be supported from version 1.9.0."
763
+ "This behavior is deprecated and will not be supported from version 1.10.0."
764
764
  )
765
765
  logger.warn(error_message)
766
766
  elif allow_cross_project:
@@ -2479,9 +2479,9 @@ class MlrunProject(ModelObj):
2479
2479
  :param fetch_credentials_from_sys_config: If true, fetch the credentials from the system configuration.
2480
2480
  """
2481
2481
  if default_controller_image != "mlrun/mlrun":
2482
- # TODO: Remove this in 1.9.0
2482
+ # TODO: Remove this in 1.10.0
2483
2483
  warnings.warn(
2484
- "'default_controller_image' is deprecated and will be removed in 1.9.0, "
2484
+ "'default_controller_image' is deprecated in 1.7.0 and will be removed in 1.10.0, "
2485
2485
  "use 'image' instead",
2486
2486
  FutureWarning,
2487
2487
  )
@@ -2861,10 +2861,10 @@ class MlrunProject(ModelObj):
2861
2861
 
2862
2862
  self.spec.set_function(name, function_object, func)
2863
2863
 
2864
- # TODO: Remove this in 1.10.0
2864
+ # TODO: Remove this in 1.11.0
2865
2865
  @deprecated.deprecated(
2866
2866
  version="1.8.0",
2867
- reason="'remove_function' is deprecated and will be removed in 1.10.0. "
2867
+ reason="'remove_function' is deprecated and will be removed in 1.11.0. "
2868
2868
  "Please use `delete_function` instead.",
2869
2869
  category=FutureWarning,
2870
2870
  )
@@ -2892,9 +2892,9 @@ class MlrunProject(ModelObj):
2892
2892
 
2893
2893
  :param name: name of the model-monitoring-function/s (under the project)
2894
2894
  """
2895
- # TODO: Remove this in 1.9.0
2895
+ # TODO: Remove this in 1.10.0
2896
2896
  warnings.warn(
2897
- "'remove_model_monitoring_function' is deprecated and will be removed in 1.9.0. "
2897
+ "'remove_model_monitoring_function' is deprecated in 1.7.0 and will be removed in 1.10.0. "
2898
2898
  "Please use `delete_model_monitoring_function` instead.",
2899
2899
  FutureWarning,
2900
2900
  )
@@ -3796,7 +3796,7 @@ class MlrunProject(ModelObj):
3796
3796
  top_level: bool = False,
3797
3797
  uids: Optional[list[str]] = None,
3798
3798
  latest_only: bool = False,
3799
- tsdb_metrics: bool = True,
3799
+ tsdb_metrics: bool = False,
3800
3800
  metric_list: Optional[list[str]] = None,
3801
3801
  ) -> mlrun.common.schemas.ModelEndpointList:
3802
3802
  """
@@ -4065,9 +4065,9 @@ class MlrunProject(ModelObj):
4065
4065
  (by default `/home/mlrun_code`)
4066
4066
  """
4067
4067
  if not overwrite_build_params:
4068
- # TODO: change overwrite_build_params default to True in 1.9.0
4068
+ # TODO: change overwrite_build_params default to True in 1.10.0
4069
4069
  warnings.warn(
4070
- "The `overwrite_build_params` parameter default will change from 'False' to 'True' in 1.9.0.",
4070
+ "The `overwrite_build_params` parameter default will change from 'False' to 'True' in 1.10.0.",
4071
4071
  mlrun.utils.OverwriteBuildParamsWarning,
4072
4072
  )
4073
4073
  default_image_name = mlrun.mlconf.default_project_image_name.format(
@@ -4142,9 +4142,9 @@ class MlrunProject(ModelObj):
4142
4142
  )
4143
4143
 
4144
4144
  if not overwrite_build_params:
4145
- # TODO: change overwrite_build_params default to True in 1.9.0
4145
+ # TODO: change overwrite_build_params default to True in 1.10.0
4146
4146
  warnings.warn(
4147
- "The `overwrite_build_params` parameter default will change from 'False' to 'True' in 1.9.0.",
4147
+ "The `overwrite_build_params` parameter default will change from 'False' to 'True' in 1.10.0.",
4148
4148
  mlrun.utils.OverwriteBuildParamsWarning,
4149
4149
  )
4150
4150
 
@@ -4323,7 +4323,7 @@ class MlrunProject(ModelObj):
4323
4323
  :param kind: Return artifacts of the requested kind.
4324
4324
  :param category: Return artifacts of the requested category.
4325
4325
  :param tree: Return artifacts of the requested tree.
4326
- :param limit: Deprecated - Maximum number of artifacts to return (will be removed in 1.10.0).
4326
+ :param limit: Deprecated - Maximum number of artifacts to return (will be removed in 1.11.0).
4327
4327
  :param format_: The format in which to return the artifacts. Default is 'full'.
4328
4328
  :param partition_by: Field to group results by. When `partition_by` is specified, the `partition_sort_by`
4329
4329
  parameter must be provided as well.
@@ -4336,9 +4336,9 @@ class MlrunProject(ModelObj):
4336
4336
  db = mlrun.db.get_run_db(secrets=self._secrets)
4337
4337
 
4338
4338
  if limit:
4339
- # TODO: Remove this in 1.10.0
4339
+ # TODO: Remove this in 1.11.0
4340
4340
  warnings.warn(
4341
- "'limit' is deprecated and will be removed in 1.10.0. Use 'page' and 'page_size' instead.",
4341
+ "'limit' is deprecated and will be removed in 1.11.0. Use 'page' and 'page_size' instead.",
4342
4342
  FutureWarning,
4343
4343
  )
4344
4344
 
@@ -4468,7 +4468,7 @@ class MlrunProject(ModelObj):
4468
4468
  artifacts generated from a hyper-param run. If only a single iteration exists, will return the artifact
4469
4469
  from that iteration. If using ``best_iter``, the ``iter`` parameter must not be used.
4470
4470
  :param tree: Return artifacts of the requested tree.
4471
- :param limit: Maximum number of artifacts to return.
4471
+ :param limit: Deprecated - Maximum number of artifacts to return (will be removed in 1.11.0).
4472
4472
  :param format_: The format in which to return the artifacts. Default is 'full'.
4473
4473
  """
4474
4474
  db = mlrun.db.get_run_db(secrets=self._secrets)
@@ -4735,7 +4735,7 @@ class MlrunProject(ModelObj):
4735
4735
  :param states: List only runs whose state is one of the provided states.
4736
4736
  :param sort: Whether to sort the result according to their start time. Otherwise, results will be
4737
4737
  returned by their internal order in the DB (order will not be guaranteed).
4738
- :param last: Deprecated - currently not used (will be removed in 1.9.0).
4738
+ :param last: Deprecated - currently not used (will be removed in 1.10.0).
4739
4739
  :param iter: If ``True`` return runs from all iterations. Otherwise, return only runs whose ``iter`` is 0.
4740
4740
  :param start_time_from: Filter by run start time in ``[start_time_from, start_time_to]``.
4741
4741
  :param start_time_to: Filter by run start time in ``[start_time_from, start_time_to]``.
@@ -4746,9 +4746,9 @@ class MlrunProject(ModelObj):
4746
4746
  :param end_time_to: Filter by run end time in ``[end_time_from, end_time_to]``.
4747
4747
  """
4748
4748
  if state:
4749
- # TODO: Remove this in 1.9.0
4749
+ # TODO: Remove this in 1.10.0
4750
4750
  warnings.warn(
4751
- "'state' is deprecated and will be removed in 1.9.0. Use 'states' instead.",
4751
+ "'state' is deprecated in 1.7.0 and will be removed in 1.10.0. Use 'states' instead.",
4752
4752
  FutureWarning,
4753
4753
  )
4754
4754
 
mlrun/render.py CHANGED
@@ -361,9 +361,6 @@ def get_tblframe(df, display, classes=None):
361
361
  return ipython_display(html, display)
362
362
 
363
363
 
364
- uid_template = '<div title="{}"><a href="{}/{}/{}/jobs/monitor/{}/overview" target="_blank" >...{}</a></div>'
365
-
366
-
367
364
  def runs_to_html(
368
365
  df: pd.DataFrame,
369
366
  display: bool = True,
@@ -379,15 +376,14 @@ def runs_to_html(
379
376
  df["results"] = df["results"].apply(dict_html)
380
377
  df["start"] = df["start"].apply(time_str)
381
378
  df["parameters"] = df["parameters"].apply(dict_html)
379
+ uid_template = '<div title="{}"><a href="{}" target="_blank" >...{}</a></div>'
380
+
382
381
  if config.resolve_ui_url():
383
382
  df["uid"] = df.apply(
384
383
  lambda x: uid_template.format(
385
- x.uid,
386
- config.resolve_ui_url(),
387
- config.ui.projects_prefix,
388
- x.project,
389
- x.uid,
390
- x.uid[-8:],
384
+ x["uid"],
385
+ mlrun.utils.get_run_url(x["project"], x["uid"], x["name"]),
386
+ x["uid"][-8:],
391
387
  ),
392
388
  axis=1,
393
389
  )
mlrun/run.py CHANGED
@@ -261,7 +261,7 @@ def get_or_create_ctx(
261
261
  """
262
262
  if labels:
263
263
  warnings.warn(
264
- "The `labels` argument is deprecated and will be removed in 1.9.0. "
264
+ "The `labels` argument is deprecated in 1.7.0 and will be removed in 1.10.0. "
265
265
  "Please use `spec` instead, e.g.:\n"
266
266
  "spec={'metadata': {'labels': {'key': 'value'}}}",
267
267
  FutureWarning,
mlrun/runtimes/base.py CHANGED
@@ -148,10 +148,10 @@ class FunctionSpec(ModelObj):
148
148
 
149
149
  @property
150
150
  def clone_target_dir(self):
151
- # TODO: remove this property in 1.9.0
151
+ # TODO: remove this property in 1.10.0
152
152
  if self.build.source_code_target_dir:
153
153
  warnings.warn(
154
- "The clone_target_dir attribute is deprecated in 1.6.2 and will be removed in 1.9.0. "
154
+ "The clone_target_dir attribute is deprecated in 1.6.2 and will be removed in 1.10.0. "
155
155
  "Use spec.build.source_code_target_dir instead.",
156
156
  FutureWarning,
157
157
  )
@@ -159,10 +159,10 @@ class FunctionSpec(ModelObj):
159
159
 
160
160
  @clone_target_dir.setter
161
161
  def clone_target_dir(self, clone_target_dir):
162
- # TODO: remove this property in 1.9.0
162
+ # TODO: remove this property in 1.10.0
163
163
  if clone_target_dir:
164
164
  warnings.warn(
165
- "The clone_target_dir attribute is deprecated in 1.6.2 and will be removed in 1.9.0. "
165
+ "The clone_target_dir attribute is deprecated in 1.6.2 and will be removed in 1.10.0. "
166
166
  "Use spec.build.source_code_target_dir instead.",
167
167
  FutureWarning,
168
168
  )
mlrun/runtimes/kubejob.py CHANGED
@@ -114,9 +114,9 @@ class KubejobRuntime(KubeResource):
114
114
  e.g. builder_env={"GIT_TOKEN": token}
115
115
  """
116
116
  if not overwrite:
117
- # TODO: change overwrite default to True in 1.9.0
117
+ # TODO: change overwrite default to True in 1.10.0
118
118
  warnings.warn(
119
- "The `overwrite` parameter default will change from 'False' to 'True' in 1.9.0.",
119
+ "The `overwrite` parameter default will change from 'False' to 'True' in 1.10.0.",
120
120
  mlrun.utils.OverwriteBuildParamsWarning,
121
121
  )
122
122
  image = mlrun.utils.helpers.remove_image_protocol_prefix(image)
@@ -623,9 +623,9 @@ class RemoteRuntime(KubeResource):
623
623
  :param force_build: set True for force building the image
624
624
  """
625
625
  if auth_info:
626
- # TODO: remove in 1.9.0
626
+ # TODO: remove in 1.10.0
627
627
  warnings.warn(
628
- "'auth_info' is deprecated for nuclio runtimes in 1.7.0 and will be removed in 1.9.0",
628
+ "'auth_info' is deprecated for nuclio runtimes in 1.7.0 and will be removed in 1.10.0",
629
629
  FutureWarning,
630
630
  )
631
631
 
@@ -44,7 +44,7 @@ from .function import NuclioSpec, RemoteRuntime, min_nuclio_versions
44
44
  serving_subkind = "serving_v2"
45
45
 
46
46
  if TYPE_CHECKING:
47
- # remove this block in 1.9.0
47
+ # remove this block in 1.10.0
48
48
  from mlrun.model_monitoring import TrackingPolicy
49
49
 
50
50
 
@@ -361,8 +361,8 @@ class ServingRuntime(RemoteRuntime):
361
361
  if batch:
362
362
  warnings.warn(
363
363
  "The `batch` size parameter was deprecated in version 1.8.0 and is no longer used. "
364
- "It will be removed in 1.10.",
365
- # TODO: Remove this in 1.10
364
+ "It will be removed in 1.11.",
365
+ # TODO: Remove this in 1.11
366
366
  FutureWarning,
367
367
  )
368
368
  if stream_args:
@@ -370,7 +370,7 @@ class ServingRuntime(RemoteRuntime):
370
370
  if tracking_policy is not None:
371
371
  warnings.warn(
372
372
  "The `tracking_policy` argument is deprecated from version 1.7.0 "
373
- "and has no effect. It will be removed in 1.9.0.\n"
373
+ "and has no effect. It will be removed in 1.10.0.\n"
374
374
  "To set the desired model monitoring time window and schedule, use "
375
375
  "the `base_period` argument in `project.enable_model_monitoring()`.",
376
376
  FutureWarning,
mlrun/runtimes/utils.py CHANGED
@@ -437,7 +437,7 @@ def enrich_run_labels(
437
437
  ):
438
438
  labels_enrichment = {
439
439
  RunLabels.owner: os.environ.get("V3IO_USERNAME") or getpass.getuser(),
440
- # TODO: remove this in 1.9.0
440
+ # TODO: remove this in 1.10.0
441
441
  RunLabels.v3io_user: os.environ.get("V3IO_USERNAME"),
442
442
  }
443
443
  labels_to_enrich = labels_to_enrich or RunLabels.all()
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "f2265655b8f005d0446f9f5c81b60dd359e36daa",
3
- "version": "1.8.0-rc57"
2
+ "git_commit": "71d3a0fb014285e95661dd848cdf373ce17b02f3",
3
+ "version": "1.8.0-rc59"
4
4
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mlrun
3
- Version: 1.8.0rc57
3
+ Version: 1.8.0rc59
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
@@ -51,7 +51,7 @@ Requires-Dist: setuptools>=75.2
51
51
  Requires-Dist: deprecated~=1.2
52
52
  Requires-Dist: jinja2>=3.1.3,~=3.1
53
53
  Requires-Dist: orjson<4,>=3.9.15
54
- Requires-Dist: mlrun-pipelines-kfp-common~=0.3.12
54
+ Requires-Dist: mlrun-pipelines-kfp-common~=0.3.14
55
55
  Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.3.10; python_version < "3.11"
56
56
  Requires-Dist: docstring_parser~=0.16
57
57
  Requires-Dist: aiosmtplib~=3.0
@@ -79,7 +79,7 @@ Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "google-cloud"
79
79
  Requires-Dist: google-cloud==0.34; extra == "google-cloud"
80
80
  Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "google-cloud"
81
81
  Provides-Extra: kafka
82
- Requires-Dist: kafka-python~=2.0; extra == "kafka"
82
+ Requires-Dist: kafka-python~=2.1.0; extra == "kafka"
83
83
  Requires-Dist: avro~=1.11; extra == "kafka"
84
84
  Provides-Extra: redis
85
85
  Requires-Dist: redis~=4.3; extra == "redis"
@@ -139,7 +139,7 @@ Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "all"
139
139
  Requires-Dist: google-cloud-storage==2.14.0; extra == "all"
140
140
  Requires-Dist: google-cloud==0.34; extra == "all"
141
141
  Requires-Dist: graphviz~=0.20.0; extra == "all"
142
- Requires-Dist: kafka-python~=2.0; extra == "all"
142
+ Requires-Dist: kafka-python~=2.1.0; extra == "all"
143
143
  Requires-Dist: mlflow~=2.16; extra == "all"
144
144
  Requires-Dist: msrest~=0.6.21; extra == "all"
145
145
  Requires-Dist: oss2==2.18.1; extra == "all"
@@ -170,7 +170,7 @@ Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "comple
170
170
  Requires-Dist: google-cloud-storage==2.14.0; extra == "complete"
171
171
  Requires-Dist: google-cloud==0.34; extra == "complete"
172
172
  Requires-Dist: graphviz~=0.20.0; extra == "complete"
173
- Requires-Dist: kafka-python~=2.0; extra == "complete"
173
+ Requires-Dist: kafka-python~=2.1.0; extra == "complete"
174
174
  Requires-Dist: mlflow~=2.16; extra == "complete"
175
175
  Requires-Dist: msrest~=0.6.21; extra == "complete"
176
176
  Requires-Dist: oss2==2.18.1; extra == "complete"
@@ -209,7 +209,7 @@ Requires-Dist: graphviz~=0.20.0; extra == "complete-api"
209
209
  Requires-Dist: grpcio~=1.70.0; extra == "complete-api"
210
210
  Requires-Dist: humanfriendly~=10.0; extra == "complete-api"
211
211
  Requires-Dist: igz-mgmt~=0.4.1; extra == "complete-api"
212
- Requires-Dist: kafka-python~=2.0; extra == "complete-api"
212
+ Requires-Dist: kafka-python~=2.1.0; extra == "complete-api"
213
213
  Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "complete-api"
214
214
  Requires-Dist: mlflow~=2.16; extra == "complete-api"
215
215
  Requires-Dist: mlrun-pipelines-kfp-v1-8[kfp]~=0.3.10; python_version < "3.11" and extra == "complete-api"
@@ -2,24 +2,24 @@ mlrun/__init__.py,sha256=Cqm9U9eCEdLpMejhU2BEhubu0mHL71igJJIwYa738EA,7450
2
2
  mlrun/__main__.py,sha256=0NDzPf9VFRO8KFfGgb8mkGUPIDS285aASV8Hbxs-ND0,45920
3
3
  mlrun/config.py,sha256=xxmIe0g1YP2Y5_R_uQjP3w6v_4lA7iTjXhAyojdY08I,71929
4
4
  mlrun/errors.py,sha256=LkcbXTLANGdsgo2CRX2pdbyNmt--lMsjGv0XZMgP-Nc,8222
5
- mlrun/execution.py,sha256=FUktsD3puSFjc3LZJU35b-OmFBrBPBNntViCLQVuwnk,50008
5
+ mlrun/execution.py,sha256=rss4zA5M9tOCnSaXrK_-_BQ5F5DfF9OzesgQliq7jvQ,50008
6
6
  mlrun/features.py,sha256=ReBaNGsBYXqcbgI012n-SO_j6oHIbk_Vpv0CGPXbUmo,15842
7
7
  mlrun/k8s_utils.py,sha256=-RmKAlSBo_qVeJa1bIiwi6TUyuEpb4AhF7wIQ_H5ZJ0,8909
8
8
  mlrun/lists.py,sha256=-nbmqScRia0v2IdSHt6Pd0fLRLSEtdB9bSxyD92BWvs,8562
9
9
  mlrun/model.py,sha256=5YedJfY9La867fhW8sZJdWb4FwyXPR1r1C5SqYyB4_w,85864
10
- mlrun/render.py,sha256=940H9fBBFeghH4dlifbURvtjlvw4GlWdAXezN6ky4rI,13275
11
- mlrun/run.py,sha256=0ORoMtEq6-D1pZLHcYMb2szCFXS3P6N8XhAzu6Ud1NA,45112
10
+ mlrun/render.py,sha256=5DlhD6JtzHgmj5RVlpaYiHGhX84Q7qdi4RCEUj2UMgw,13195
11
+ mlrun/run.py,sha256=vEgESyKS6mwl6L4qtU71HtoaVQSzbxQguJESGdndyEc,45122
12
12
  mlrun/secrets.py,sha256=dZPdkc_zzfscVQepOHUwmzFqnBavDCBXV9DQoH_eIYM,7800
13
13
  mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
14
14
  mlrun/alerts/alert.py,sha256=QQFZGydQbx9RvAaSiaH-ALQZVcDKQX5lgizqj_rXW2k,15948
15
15
  mlrun/api/schemas/__init__.py,sha256=tVAnpexDkfI0JWMJNlPSnVOzoV4xqIjWGSln9UkPS4I,13921
16
16
  mlrun/artifacts/__init__.py,sha256=ofC2extBCOC1wg1YtdTzWzH3eeG_f-sFBUkHjYtZJpk,1175
17
- mlrun/artifacts/base.py,sha256=SFHe44o9RV9C3-WODOD53WdBjWk0Ya8lnap9LmERwrQ,29959
18
- mlrun/artifacts/dataset.py,sha256=QTot5vCgLHatlIWwNnKbWdZ8HHTxaZ7wk4gWQDoqQ2k,16655
17
+ mlrun/artifacts/base.py,sha256=53PdSAvWdfE5YBAVr-ikcT8iMso5nJdRvCWxS-JsbMw,29972
18
+ mlrun/artifacts/dataset.py,sha256=BC2dIf-HtlCOqRjLAO6Fp-KiA_EYSCi2BA66Ve_az9M,16660
19
19
  mlrun/artifacts/document.py,sha256=3X1i27NYSd-cOcX-lEvaNTUvwS2UKWXW2EnlfWokrVk,17374
20
20
  mlrun/artifacts/manager.py,sha256=bqp2-VgThx5RAGEui6LwTA9EMNNq6Vu1Z_-yjBpk92c,16212
21
- mlrun/artifacts/model.py,sha256=cad5pvEz3jmA7xgqfRUT5ojc3co0ikSD7UzO99NypQ0,22229
22
- mlrun/artifacts/plots.py,sha256=dS0mHGt1b20tN2JyEH9H5o5I0oMKZkzn3Uz_3Hf4WjU,4813
21
+ mlrun/artifacts/model.py,sha256=cjKO0iPPbWE_L0Da_LlxH-XwgyX2K_GJE4COHw_4OD4,22234
22
+ mlrun/artifacts/plots.py,sha256=sh66tNyXSQXaO3Gcp1Z4muN1G3xUwReIw6e_mvxV8hA,4823
23
23
  mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
24
24
  mlrun/common/constants.py,sha256=14xMUX9C5BB-LxsTlMTJQf_Xz2DyRjaK9yeR5dadcDU,3426
25
25
  mlrun/common/helpers.py,sha256=DIdqs_eN3gO5bZ8iFobIvx8cEiOxYxhFIyut6-O69T0,1385
@@ -38,11 +38,11 @@ mlrun/common/formatters/project.py,sha256=0G4lhcTAsxQCxd40dKC4894cMH8nKt03BcGyp9
38
38
  mlrun/common/formatters/run.py,sha256=Gcf9lVDqxPMNfWcPX0RJasjTC_N_U0yTBkQ02jOPJ7A,1062
39
39
  mlrun/common/model_monitoring/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
40
40
  mlrun/common/model_monitoring/helpers.py,sha256=AkuHz4u318MEP4ebxmNWlNXh6HiNLrI5oF7QvJiJkYc,2707
41
- mlrun/common/runtimes/constants.py,sha256=PBpCtPixbKjP9aTo6Qqtui6FjWcXbFxhbSzduV4ttc4,12324
41
+ mlrun/common/runtimes/constants.py,sha256=FU9VdepuakXCt6zk9MLobelQjsFWtnuqZ5pQMSpphuk,12325
42
42
  mlrun/common/schemas/__init__.py,sha256=tNeYsylPAgG-3YI_Foka80alqm0JoCpXtuS_nDZzuaU,5324
43
43
  mlrun/common/schemas/alert.py,sha256=tRsjHEQTjCb-83GS0mprsu5junvqL4aQjWN2Rt_yAaM,10183
44
44
  mlrun/common/schemas/api_gateway.py,sha256=3a0QxECLmoDkD5IiOKtXJL-uiWB26Hg55WMA3nULYuI,7127
45
- mlrun/common/schemas/artifact.py,sha256=T-CdBIqgDUH-i8hx1Dp-Msr8v6UGwwp3d9j8rUzb9ZM,4249
45
+ mlrun/common/schemas/artifact.py,sha256=RRnURzGiBYDZKc4gB-giyywDhkp3ttnsObgJNy-QqEE,4250
46
46
  mlrun/common/schemas/auth.py,sha256=qYOCDbK-k7GTjwLseqGoxwcR-rdIbG2k7ct29M0sPUI,6880
47
47
  mlrun/common/schemas/background_task.py,sha256=ofWRAQGGEkXEu79Dbw7tT_5GPolR09Lc3Ebg2r0fT24,1728
48
48
  mlrun/common/schemas/client_spec.py,sha256=iQpxwPoWkrHaxta5qKY78loxmMNsbjCz9Y1O9BTeeZQ,2875
@@ -62,10 +62,10 @@ mlrun/common/schemas/notification.py,sha256=WDdGhFII--zII5XebfkTdse8reMgKeVCYXlg
62
62
  mlrun/common/schemas/object.py,sha256=0vftHJcicAm87Hfgi_SdyQEqokoZRE4IEHHRPx34hNQ,1983
63
63
  mlrun/common/schemas/pagination.py,sha256=8NEmiIkCXw5_sv-lE0MWgWz-WpxhSSn-vBtbPDBOGXc,899
64
64
  mlrun/common/schemas/partition.py,sha256=MI8f7EbJ42RyVBLYVIjL6cjkWoL6Wgjdi-XbaUqQM3M,5921
65
- mlrun/common/schemas/pipeline.py,sha256=HFFtM_fyerkCaDDpTrXJVgYg02SD56SV06ZQ6_WhApc,1435
66
- mlrun/common/schemas/project.py,sha256=e3glE0HdLLZAbJJn6hKABtFI9L4jrlrQZHmUygXBlzM,6510
65
+ mlrun/common/schemas/pipeline.py,sha256=Z5nDr5WTzIgfBqnij_jvHkN_ep7xmOWNldCP60zv9qA,1436
66
+ mlrun/common/schemas/project.py,sha256=HHfaGbbRVVJuJPupHAEfW8jaxhcTDof3NiV61UC3MiU,6511
67
67
  mlrun/common/schemas/regex.py,sha256=8_vbDeAE0SODJDj7yUFg1FbaB9CNydYQTJ29JxE74Kc,776
68
- mlrun/common/schemas/runs.py,sha256=-OJOQiorFUiWgy2DKLGovWr-xbMTJ1BC3IIVXCdyp94,1274
68
+ mlrun/common/schemas/runs.py,sha256=Lo95LJVcLlYNkepgljxKC7VnMfnYNidcmdxKu2-jz0E,1275
69
69
  mlrun/common/schemas/runtime_resource.py,sha256=74EGmk1iODg-wV0cn2ew44ZX20nqJMowgj-gNsh0vyU,1569
70
70
  mlrun/common/schemas/schedule.py,sha256=LTWdZ4FvKDGkmmfyqKoBQ36VFqnnyIYLnq1I6qrTPyo,4292
71
71
  mlrun/common/schemas/secret.py,sha256=CCxFYiPwJtDxwg2VVJH9nUG9cAZ2a34IjeuaWv-BYlc,1487
@@ -86,7 +86,7 @@ mlrun/datastore/alibaba_oss.py,sha256=k-OHVe08HjMewlkpsT657CbOiVFAfSq9_EqhCE-k86
86
86
  mlrun/datastore/azure_blob.py,sha256=SzAcHYSXkm8Zpopz2Ea-rWVClH0URocUazcNK04S9W0,12776
87
87
  mlrun/datastore/base.py,sha256=9R3lwB_L4hv5WW2q24WS62_KTh-wO4UG6pwzISZU6bM,26231
88
88
  mlrun/datastore/datastore.py,sha256=AXXPgHpSG8Ig1RtTDGfdCJu4UT-AQPC43FGBOptIVOg,9484
89
- mlrun/datastore/datastore_profile.py,sha256=RRpb5TfTDBOnZQGSr6Zlmi1QSPHRDssBlWGLIpNBHM0,23860
89
+ mlrun/datastore/datastore_profile.py,sha256=JIH7GYlC40pdaqO8xwYp52dO8QFEB8le021kFINFh4k,23862
90
90
  mlrun/datastore/dbfs_store.py,sha256=QkDRzwFnvm7CgEg4NuGxes6tBgKDyhX0CiBUvK8c9pk,6568
91
91
  mlrun/datastore/filestore.py,sha256=OcykjzhbUAZ6_Cb9bGAXRL2ngsOpxXSb4rR0lyogZtM,3773
92
92
  mlrun/datastore/google_cloud_storage.py,sha256=MnToY6irdhBZ8Wcapqnr1Yq2724LAh2uPO7MAtdWfUY,8716
@@ -95,23 +95,23 @@ mlrun/datastore/inmem.py,sha256=IsM83nn-3CqmGdLzim7i9ZmJwG6ZGhBZGN6_hszWZnE,2951
95
95
  mlrun/datastore/redis.py,sha256=QeNMkSz3zQXiXZhFUZcEtViqqbUysGJditbqe5M-J48,5682
96
96
  mlrun/datastore/s3.py,sha256=lD4Fs69rwMeISovZzOxRdz_z9FuffysTdjJA9ybdnLA,9262
97
97
  mlrun/datastore/snowflake_utils.py,sha256=Wohvnlmq8j1d98RCaknll-iWdZZpSlCrKhUOEy0_-CA,1483
98
- mlrun/datastore/sources.py,sha256=juPTIDpxHxbRBoTMPEG1V-6bgR3E3ufCir-Dnq_SFyg,48975
98
+ mlrun/datastore/sources.py,sha256=KTIsddAHNnpZoMv5i_6Rz2WjuKt6mFvhEFU899SgT20,48978
99
99
  mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
100
100
  mlrun/datastore/spark_utils.py,sha256=_AsVoU5Ix_-W7Gyq8io8V-2GTk0m8THJNDP3WGGaWJY,2865
101
101
  mlrun/datastore/store_resources.py,sha256=PFOMrZ6KH6hBOb0PiO-cHx_kv0UpHu5P2t8_mrR-lS4,6842
102
102
  mlrun/datastore/storeytargets.py,sha256=dSy9wr4IyxrIE1GHBxzVEeEY1sdU66s4w-oUuaIfa2U,6620
103
- mlrun/datastore/targets.py,sha256=7qLf26BDH3qYTHOR7TSP0tUMPBhYOkaaOwffUBxgqY0,81201
104
- mlrun/datastore/utils.py,sha256=CbKbDI6CdFRCqyAXe-jykVvN_GH6R0JkxIQFAogR2GA,10604
103
+ mlrun/datastore/targets.py,sha256=w_UGKiOaonXUKbbxG-9XryWcdTezbzhHB2UjfgE76dM,81213
104
+ mlrun/datastore/utils.py,sha256=akkc-d9DJOUXCGJGhUyWilQ1an-Pz7W6aDCEzXv3_bA,10614
105
105
  mlrun/datastore/v3io.py,sha256=QSYBORRLcJTeM9mt0EaWzyLcdmzrPkqrF7k5uLTam5U,8209
106
106
  mlrun/datastore/vectorstore.py,sha256=k-yom5gfw20hnVG0Rg7aBEehuXwvAloZwn0cx0VGals,11708
107
107
  mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
108
108
  mlrun/datastore/wasbfs/fs.py,sha256=ge8NK__5vTcFT-krI155_8RDUywQw4SIRX6BWATXy9Q,6299
109
109
  mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
110
110
  mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
111
- mlrun/db/base.py,sha256=4ILHlN9vMw3n78qiiTJ1997ykgDKKqxDkLl7lHVVKJg,30814
111
+ mlrun/db/base.py,sha256=lfPEPUBXPdmzXUhFD0hDBBWXdV7HXfcsz9Gj_AMLllg,30819
112
112
  mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
113
- mlrun/db/httpdb.py,sha256=y_6uf3hTwZky1KOgANS4bbx_WxYMQNDrdMkF130rdVQ,232653
114
- mlrun/db/nopdb.py,sha256=4TujePdRef5WpZY-TiGL9BmXphilNAypKREiGnqnKtg,27196
113
+ mlrun/db/httpdb.py,sha256=p2IIJxkc_q3xAKymIzX3Ic3ep60X6bpQ6PZRe9s0fyY,232763
114
+ mlrun/db/nopdb.py,sha256=ttC1pe95rZdMgiLG9kzrjZFYB1gWj3SEqeqK5c0q0w4,27197
115
115
  mlrun/feature_store/__init__.py,sha256=SlI845bWt6xX34SXunHHqhmFAR9-5v2ak8N-qpcAPGo,1328
116
116
  mlrun/feature_store/api.py,sha256=qKj5Tk6prTab6XWatWhBuPRVp0eJEctoxRMN2wz48vA,32168
117
117
  mlrun/feature_store/common.py,sha256=Z7USI-d1fo0iwBMsqMBtJflJfyuiV3BLoDXQPSAoBAs,12826
@@ -132,7 +132,7 @@ mlrun/frameworks/parallel_coordinates.py,sha256=UuZ0b0ACsaaH0rDya_0YMOWwaH6zhEyD
132
132
  mlrun/frameworks/_common/__init__.py,sha256=1ovfHxNW8V9ERVVZx8lPFVGBtsXHaHli7pZPR-Ixn8g,860
133
133
  mlrun/frameworks/_common/artifacts_library.py,sha256=O0z74o3Z6k5NruTqXMLDugZ6midOmSFqNlt7WhYIRP8,8517
134
134
  mlrun/frameworks/_common/mlrun_interface.py,sha256=gjNV_siKyJ7xZdwoH8uvRmPuuQrc8WjnhoXr3GUCkAc,21093
135
- mlrun/frameworks/_common/model_handler.py,sha256=xoelZloxZ1BcLX7krwWrs-TmqIn52CRoPvGsB7Hoar4,55544
135
+ mlrun/frameworks/_common/model_handler.py,sha256=NpYyGpYUJLJCH3-kOntyzo1WO1baTLdwVeXHI_BagV4,55530
136
136
  mlrun/frameworks/_common/plan.py,sha256=Yr98b5lkCV0K0u_krnU8gZJiXj14xfrFjJ6xD6QJdn0,3444
137
137
  mlrun/frameworks/_common/producer.py,sha256=R67XRbiz1bk0XNvuW7ybbA4v6o6Q5qzD0h3AkC-tM1A,5766
138
138
  mlrun/frameworks/_common/utils.py,sha256=NqoKbgj6UGPMBNhpK6mkKK4GOt5ko1lDqExFhQm9oEc,9131
@@ -218,13 +218,13 @@ mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,233
218
218
  mlrun/launcher/local.py,sha256=775HY-8S9LFUX5ubGXrLO0N1lVh8bn-DHFmNYuNqQPA,11451
219
219
  mlrun/launcher/remote.py,sha256=rLJW4UAnUT5iUb4BsGBOAV3K4R29a0X4lFtRkVKlyYU,7709
220
220
  mlrun/model_monitoring/__init__.py,sha256=ELy7njEtZnz09Dc6PGZSFFEGtnwI15bJNWM3Pj4_YIs,753
221
- mlrun/model_monitoring/api.py,sha256=LU58dzE4QZiMH23lgiqfI__3m2E3eEZP-DQe2ioUSwM,28317
222
- mlrun/model_monitoring/controller.py,sha256=V5eLOIYsVB6SYMlDQD3--FEW2qN133D1J5I61yzMDn0,36880
221
+ mlrun/model_monitoring/api.py,sha256=qGQripjfaaSactOs-0TK7-DIocXQNhy_znqR2eYT8Ug,28321
222
+ mlrun/model_monitoring/controller.py,sha256=UDJ0BiIO7fknr_oCU0fi4N34bNuGWDxxF6bAerjUOnI,37581
223
223
  mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
224
224
  mlrun/model_monitoring/helpers.py,sha256=8QsoYRPOVSnR3Lcv99m4XYrp_cR6hSqBUflYSOkJmFQ,21019
225
225
  mlrun/model_monitoring/stream_processing.py,sha256=Gu3TQzYoNjbreZYI73-F49QpYrod9RZOyGSgininBsA,33373
226
- mlrun/model_monitoring/tracking_policy.py,sha256=PBIGrUYWrwcE5gwXupBIVzOb0QRRwPJsgQm_yLGQxB4,5595
227
- mlrun/model_monitoring/writer.py,sha256=ibbhvfSHb8Reqlb7RGFEAUNM4iTyK1gk8-2m46mP6VM,8428
226
+ mlrun/model_monitoring/tracking_policy.py,sha256=LldBBEUS9uxyC09wo4Ff1z692FzAbSy93gJYGQHXGIw,5596
227
+ mlrun/model_monitoring/writer.py,sha256=rgoD1iwlqJiRdiuKY5yrSvs_wV5RD_2Ie4R4BLqZOWw,8429
228
228
  mlrun/model_monitoring/applications/__init__.py,sha256=xDBxkBjl-whHSG_4t1mLkxiypLH-fzn8TmAW9Mjo2uI,759
229
229
  mlrun/model_monitoring/applications/_application_steps.py,sha256=mjuBVqa7KY_Ymoo8DzddthUpBZyfio2e4O5ce-d-2eY,8444
230
230
  mlrun/model_monitoring/applications/base.py,sha256=f73LycKUG85invl6l7V4MRiRd1bx8jmepayrpwpr3c0,25131
@@ -232,7 +232,7 @@ mlrun/model_monitoring/applications/context.py,sha256=VfyPCIdO4z73uqFcJs87jzSI4P
232
232
  mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=2qgfFmrpHf-x0_EaHD-0T28piwSQzw-HH71aV1GwbZs,15389
233
233
  mlrun/model_monitoring/applications/results.py,sha256=_qmj6TWT0SR2bi7gUyRKBU418eGgGoLW2_hTJ7S-ock,5782
234
234
  mlrun/model_monitoring/applications/evidently/__init__.py,sha256=-DqdPnBSrjZhFvKOu_Ie3MiFvlur9sPTZpZ1u0_1AE8,690
235
- mlrun/model_monitoring/applications/evidently/base.py,sha256=3loXT5gOn5v7j2CiXDQnA0cQXroItBSso6aU0t_pzBs,7851
235
+ mlrun/model_monitoring/applications/evidently/base.py,sha256=LYYtbP4uwfIE5QyQofFUoeSQPXx8QnncVbV-gspn1WA,7371
236
236
  mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJCZFKcS7FM,644
237
237
  mlrun/model_monitoring/db/_schedules.py,sha256=RWn4wtKsIXg668gMLpxO9I8GlkxvPSaA5y7w-wFDcgE,9048
238
238
  mlrun/model_monitoring/db/_stats.py,sha256=VVMWLMqG3Us3ozBkLaokJF22Ewv8WKmVE1-OvS_g9vA,6943
@@ -269,21 +269,21 @@ mlrun/package/utils/type_hint_utils.py,sha256=JYrek6vuN3z7e6MGUD3qBLDfQ03C4puZXN
269
269
  mlrun/platforms/__init__.py,sha256=ZuyeHCHHUxYEoZRmaJqzFSfwhaTyUdBZXMeVp75ql1w,3551
270
270
  mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13749
271
271
  mlrun/projects/__init__.py,sha256=0Krf0WIKfnZa71WthYOg0SoaTodGg3sV_hK3f_OlTPI,1220
272
- mlrun/projects/operations.py,sha256=TzPbTYBgmYrjxTKP_wOtBJYFFFwDCQtaVvF1Snr0TfM,20029
272
+ mlrun/projects/operations.py,sha256=9ntpM8WnnyRk1iCY0NDKW-3aR4j2QZPSJM0SdMnsQKs,20032
273
273
  mlrun/projects/pipelines.py,sha256=wud7ezeEmhIJvfYE_wzQbA4ygEfGXHtbOtoOpan6poY,48556
274
- mlrun/projects/project.py,sha256=QdxXu66Oo-NIrBmzccVdolI-38P-i3YOOwJ2dozbaYA,236617
274
+ mlrun/projects/project.py,sha256=Ptl7SGujRcueD58-dYwM_gYDVgAiPU-9J_1Y3z0p8eE,236699
275
275
  mlrun/runtimes/__init__.py,sha256=J9Sy2HiyMlztNv6VUurMzF5H2XzttNil8nRsWDsqLyg,8923
276
- mlrun/runtimes/base.py,sha256=EL14Kmc1vWEjnBPJwLj5hHC6CtRAQHJLmohCD3sFEHo,37855
276
+ mlrun/runtimes/base.py,sha256=m347abcZRdI8654wBJea9D2GBRlkv_prz9UrA5ihlkA,37859
277
277
  mlrun/runtimes/daskjob.py,sha256=JwuGvOiPsxEDHHMMUS4Oie4hLlYYIZwihAl6DjroTY0,19521
278
278
  mlrun/runtimes/funcdoc.py,sha256=zRFHrJsV8rhDLJwoUhcfZ7Cs0j-tQ76DxwUqdXV_Wyc,9810
279
279
  mlrun/runtimes/function_reference.py,sha256=fnMKUEieKgy4JyVLhFpDtr6JvKgOaQP8F_K2H3-Pk9U,5030
280
280
  mlrun/runtimes/generators.py,sha256=X8NDlCEPveDDPOHtOGcSpbl3pAVM3DP7fuPj5xVhxEY,7290
281
- mlrun/runtimes/kubejob.py,sha256=K-nR3J0-S3Em6Ez-JD0BxHczobQhC4m0829HLdSwX8g,8797
281
+ mlrun/runtimes/kubejob.py,sha256=xt6NyPiIiPYmGDFtTe4RHF-zhrFdgwcnRr2NQEBB5NI,8799
282
282
  mlrun/runtimes/local.py,sha256=yedo3R1c46cB1mX7aOz8zORXswQPvX86U-_fYxXoqTY,22717
283
283
  mlrun/runtimes/mounts.py,sha256=2dkoktm3TXHe4XHmRhvC0UfvWzq2vy_13MeaW7wgyPo,18735
284
284
  mlrun/runtimes/pod.py,sha256=kjnDKOQKqfmprzA3tbXhaB58Dp6So4cOApcjYZ3kVko,67691
285
285
  mlrun/runtimes/remotesparkjob.py,sha256=dod99nqz3GdRfmnBoQKfwFCXTetfuCScd2pKH3HJyoY,7394
286
- mlrun/runtimes/utils.py,sha256=3_Vu_OHlhi8f0vh_w9ii2eTKgS5dh6RVi1HwX9oDKuU,15675
286
+ mlrun/runtimes/utils.py,sha256=ut0IvQr47NI4Tw7XeHrA7HU7Zun3B1-K44GInecSWF8,15676
287
287
  mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
288
288
  mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=sIqIg5DQAf4j0wCPA-G0GoxY6vacRddxCy5KDUZszek,2245
289
289
  mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=WBq8Q0RIYwLkyshU7btYrB59wotzK_6xixHqZ-oz0PY,12851
@@ -293,9 +293,9 @@ mlrun/runtimes/mpijob/abstract.py,sha256=JGMjcJ4dvpJbctF6psU9UvYyNCutMxTMgBQeTlz
293
293
  mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
294
294
  mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
295
295
  mlrun/runtimes/nuclio/api_gateway.py,sha256=vH9ClKVP4Mb24rvA67xPuAvAhX-gAv6vVtjVxyplhdc,26969
296
- mlrun/runtimes/nuclio/function.py,sha256=mJ719djvzin7ee9QKoD-DIItuOUvTgrDHhzHgr1Q5zI,54541
296
+ mlrun/runtimes/nuclio/function.py,sha256=_PJ5ubHb3JfLjOj5sXaxnmTnBLI2YogI33D4OY1u55k,54543
297
297
  mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
298
- mlrun/runtimes/nuclio/serving.py,sha256=d0nzPALUYXO4fKFFhxW3hY-_NU-ZhBLWXa2vWIetBRI,33434
298
+ mlrun/runtimes/nuclio/serving.py,sha256=Pqca0oG_B76RlgBsMYH8yR5M3LBp-ARONP0mP4aFTls,33436
299
299
  mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
300
300
  mlrun/runtimes/nuclio/application/application.py,sha256=VPX-ruYQJ7-7yd5c2sWdF4U5JCGSS3kYjUfOgev6l_Y,29186
301
301
  mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=lEHH74vr2PridIHp1Jkc_NjkrWb5b6zawRrNxHQhwGU,2913
@@ -341,11 +341,11 @@ mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAq
341
341
  mlrun/utils/notifications/notification/slack.py,sha256=eQvmctTh6wIG5xVOesLLV9S1-UUCu5UEQ9JIJOor3ts,7183
342
342
  mlrun/utils/notifications/notification/webhook.py,sha256=zxh8CAlbPnTazsk6r05X5TKwqUZVOH5KBU2fJbzQlG4,5330
343
343
  mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
344
- mlrun/utils/version/version.json,sha256=-oZ5mNoaaByxQfUDsIjBIlipDjs0TE2TBsoWs90b8lk,89
344
+ mlrun/utils/version/version.json,sha256=08xRb_RXWQjsHlxI-zhJaJcU_VawLmAzlyhKft7zFsQ,89
345
345
  mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
346
- mlrun-1.8.0rc57.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
347
- mlrun-1.8.0rc57.dist-info/METADATA,sha256=yINJv08j-HiR8lfdVnt_vlw_vgLKwgUYnOkgNUd8c6o,25797
348
- mlrun-1.8.0rc57.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
349
- mlrun-1.8.0rc57.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
350
- mlrun-1.8.0rc57.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
351
- mlrun-1.8.0rc57.dist-info/RECORD,,
346
+ mlrun-1.8.0rc59.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
347
+ mlrun-1.8.0rc59.dist-info/METADATA,sha256=452aycVR_BcKduuSQaZhp-BMOKbNDWDbiJjF6j5UIzM,25805
348
+ mlrun-1.8.0rc59.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
349
+ mlrun-1.8.0rc59.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
350
+ mlrun-1.8.0rc59.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
351
+ mlrun-1.8.0rc59.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.3.1)
2
+ Generator: setuptools (80.4.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5