mlrun 1.10.0rc5__py3-none-any.whl → 1.10.0rc7__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 (47) hide show
  1. mlrun/__main__.py +47 -4
  2. mlrun/artifacts/base.py +0 -27
  3. mlrun/artifacts/dataset.py +0 -8
  4. mlrun/artifacts/model.py +3 -10
  5. mlrun/artifacts/plots.py +0 -13
  6. mlrun/common/schemas/model_monitoring/__init__.py +1 -0
  7. mlrun/common/schemas/model_monitoring/constants.py +14 -2
  8. mlrun/common/schemas/model_monitoring/functions.py +66 -0
  9. mlrun/common/schemas/project.py +3 -0
  10. mlrun/config.py +3 -3
  11. mlrun/db/base.py +13 -20
  12. mlrun/db/httpdb.py +48 -65
  13. mlrun/db/nopdb.py +12 -13
  14. mlrun/launcher/base.py +1 -0
  15. mlrun/launcher/client.py +24 -0
  16. mlrun/launcher/local.py +4 -0
  17. mlrun/model_monitoring/applications/_application_steps.py +23 -39
  18. mlrun/model_monitoring/applications/base.py +167 -32
  19. mlrun/model_monitoring/db/tsdb/base.py +30 -0
  20. mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connection.py +118 -50
  21. mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +117 -24
  22. mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +106 -15
  23. mlrun/model_monitoring/helpers.py +0 -3
  24. mlrun/projects/operations.py +11 -24
  25. mlrun/projects/project.py +81 -83
  26. mlrun/runtimes/base.py +0 -27
  27. mlrun/runtimes/daskjob.py +6 -4
  28. mlrun/runtimes/databricks_job/databricks_runtime.py +0 -2
  29. mlrun/runtimes/kubejob.py +5 -8
  30. mlrun/runtimes/mpijob/abstract.py +2 -2
  31. mlrun/runtimes/mpijob/v1.py +2 -2
  32. mlrun/runtimes/nuclio/application/application.py +0 -5
  33. mlrun/runtimes/nuclio/function.py +2 -11
  34. mlrun/runtimes/nuclio/serving.py +46 -6
  35. mlrun/runtimes/pod.py +4 -3
  36. mlrun/runtimes/remotesparkjob.py +2 -2
  37. mlrun/runtimes/sparkjob/spark3job.py +2 -2
  38. mlrun/serving/server.py +97 -3
  39. mlrun/serving/states.py +16 -18
  40. mlrun/utils/helpers.py +15 -4
  41. mlrun/utils/version/version.json +2 -2
  42. {mlrun-1.10.0rc5.dist-info → mlrun-1.10.0rc7.dist-info}/METADATA +3 -2
  43. {mlrun-1.10.0rc5.dist-info → mlrun-1.10.0rc7.dist-info}/RECORD +47 -46
  44. {mlrun-1.10.0rc5.dist-info → mlrun-1.10.0rc7.dist-info}/WHEEL +0 -0
  45. {mlrun-1.10.0rc5.dist-info → mlrun-1.10.0rc7.dist-info}/entry_points.txt +0 -0
  46. {mlrun-1.10.0rc5.dist-info → mlrun-1.10.0rc7.dist-info}/licenses/LICENSE +0 -0
  47. {mlrun-1.10.0rc5.dist-info → mlrun-1.10.0rc7.dist-info}/top_level.txt +0 -0
mlrun/runtimes/pod.py CHANGED
@@ -103,6 +103,7 @@ class KubeResourceSpec(FunctionSpec):
103
103
  "preemption_mode",
104
104
  "security_context",
105
105
  "state_thresholds",
106
+ "serving_spec",
106
107
  ]
107
108
  _default_fields_to_strip = FunctionSpec._default_fields_to_strip + [
108
109
  "volumes",
@@ -177,8 +178,8 @@ class KubeResourceSpec(FunctionSpec):
177
178
  tolerations=None,
178
179
  preemption_mode=None,
179
180
  security_context=None,
180
- clone_target_dir=None,
181
181
  state_thresholds=None,
182
+ serving_spec=None,
182
183
  ):
183
184
  super().__init__(
184
185
  command=command,
@@ -192,7 +193,6 @@ class KubeResourceSpec(FunctionSpec):
192
193
  default_handler=default_handler,
193
194
  pythonpath=pythonpath,
194
195
  disable_auto_mount=disable_auto_mount,
195
- clone_target_dir=clone_target_dir,
196
196
  )
197
197
  self._volumes = {}
198
198
  self._volume_mounts = {}
@@ -225,6 +225,7 @@ class KubeResourceSpec(FunctionSpec):
225
225
  state_thresholds
226
226
  or mlrun.mlconf.function.spec.state_thresholds.default.to_dict()
227
227
  )
228
+ self.serving_spec = serving_spec
228
229
  # Termination grace period is internal for runtimes that have a pod termination hook hence it is not in the
229
230
  # _dict_fields and doesn't have a setter.
230
231
  self._termination_grace_period_seconds = None
@@ -1116,7 +1117,7 @@ class KubeResource(BaseRuntime):
1116
1117
  # Get the source target dir in case it was enriched due to loading source
1117
1118
  self.spec.build.source_code_target_dir = mlrun.utils.get_in(
1118
1119
  data, "data.spec.build.source_code_target_dir"
1119
- ) or mlrun.utils.get_in(data, "data.spec.clone_target_dir")
1120
+ )
1120
1121
  ready = data.get("ready", False)
1121
1122
  if not ready:
1122
1123
  logger.info(
@@ -57,8 +57,8 @@ class RemoteSparkSpec(KubeResourceSpec):
57
57
  tolerations=None,
58
58
  preemption_mode=None,
59
59
  security_context=None,
60
- clone_target_dir=None,
61
60
  state_thresholds=None,
61
+ serving_spec=None,
62
62
  ):
63
63
  super().__init__(
64
64
  command=command,
@@ -87,8 +87,8 @@ class RemoteSparkSpec(KubeResourceSpec):
87
87
  tolerations=tolerations,
88
88
  preemption_mode=preemption_mode,
89
89
  security_context=security_context,
90
- clone_target_dir=clone_target_dir,
91
90
  state_thresholds=state_thresholds,
91
+ serving_spec=serving_spec,
92
92
  )
93
93
  self.provider = provider
94
94
 
@@ -167,8 +167,8 @@ class Spark3JobSpec(KubeResourceSpec):
167
167
  driver_cores=None,
168
168
  executor_cores=None,
169
169
  security_context=None,
170
- clone_target_dir=None,
171
170
  state_thresholds=None,
171
+ serving_spec=None,
172
172
  ):
173
173
  super().__init__(
174
174
  command=command,
@@ -197,8 +197,8 @@ class Spark3JobSpec(KubeResourceSpec):
197
197
  tolerations=tolerations,
198
198
  preemption_mode=preemption_mode,
199
199
  security_context=security_context,
200
- clone_target_dir=clone_target_dir,
201
200
  state_thresholds=state_thresholds,
201
+ serving_spec=serving_spec,
202
202
  )
203
203
 
204
204
  self.driver_resources = driver_resources or {}
mlrun/serving/server.py CHANGED
@@ -21,8 +21,9 @@ import os
21
21
  import socket
22
22
  import traceback
23
23
  import uuid
24
- from typing import Optional, Union
24
+ from typing import Any, Optional, Union
25
25
 
26
+ import storey
26
27
  from nuclio import Context as NuclioContext
27
28
  from nuclio.request import Logger as NuclioLogger
28
29
 
@@ -37,9 +38,10 @@ from mlrun.secrets import SecretsStore
37
38
 
38
39
  from ..common.helpers import parse_versioned_object_uri
39
40
  from ..common.schemas.model_monitoring.constants import FileTargetKind
40
- from ..datastore import get_stream_pusher
41
+ from ..datastore import DataItem, get_stream_pusher
41
42
  from ..datastore.store_resources import ResourceCache
42
43
  from ..errors import MLRunInvalidArgumentError
44
+ from ..execution import MLClientCtx
43
45
  from ..model import ModelObj
44
46
  from ..utils import get_caller_globals
45
47
  from .states import RootFlowStep, RouterStep, get_function, graph_root_setter
@@ -314,7 +316,11 @@ class GraphServer(ModelObj):
314
316
 
315
317
  def _process_response(self, context, response, get_body):
316
318
  body = response.body
317
- if isinstance(body, context.Response) or get_body:
319
+ if (
320
+ isinstance(context, MLClientCtx)
321
+ or isinstance(body, context.Response)
322
+ or get_body
323
+ ):
318
324
  return body
319
325
 
320
326
  if body and not isinstance(body, (str, bytes)):
@@ -405,6 +411,94 @@ def v2_serving_init(context, namespace=None):
405
411
  _set_callbacks(server, context)
406
412
 
407
413
 
414
+ async def async_execute_graph(
415
+ context: MLClientCtx,
416
+ data: DataItem,
417
+ batching: bool,
418
+ batch_size: Optional[int],
419
+ ) -> list[Any]:
420
+ spec = mlrun.utils.get_serving_spec()
421
+
422
+ source_filename = spec.get("filename", None)
423
+ namespace = {}
424
+ if source_filename:
425
+ with open(source_filename) as f:
426
+ exec(f.read(), namespace)
427
+
428
+ server = GraphServer.from_dict(spec)
429
+
430
+ if config.log_level.lower() == "debug":
431
+ server.verbose = True
432
+ context.logger.info_with("Initializing states", namespace=namespace)
433
+ kwargs = {}
434
+ if hasattr(context, "is_mock"):
435
+ kwargs["is_mock"] = context.is_mock
436
+ server.init_states(
437
+ context=None, # this context is expected to be a nuclio context, which we don't have in this flow
438
+ namespace=namespace,
439
+ **kwargs,
440
+ )
441
+ context.logger.info("Initializing graph steps")
442
+ server.init_object(namespace)
443
+
444
+ context.logger.info_with("Graph was initialized", verbose=server.verbose)
445
+
446
+ if server.verbose:
447
+ context.logger.info(server.to_yaml())
448
+
449
+ df = data.as_df()
450
+
451
+ responses = []
452
+
453
+ async def run(body):
454
+ event = storey.Event(id=index, body=body)
455
+ response = await server.run(event, context)
456
+ responses.append(response)
457
+
458
+ if batching and not batch_size:
459
+ batch_size = len(df)
460
+
461
+ batch = []
462
+ for index, row in df.iterrows():
463
+ data = row.to_dict()
464
+ if batching:
465
+ batch.append(data)
466
+ if len(batch) == batch_size:
467
+ await run(batch)
468
+ batch = []
469
+ else:
470
+ await run(data)
471
+
472
+ if batch:
473
+ await run(batch)
474
+
475
+ termination_result = server.wait_for_completion()
476
+ if asyncio.iscoroutine(termination_result):
477
+ await termination_result
478
+
479
+ return responses
480
+
481
+
482
+ def execute_graph(
483
+ context: MLClientCtx,
484
+ data: DataItem,
485
+ batching: bool = False,
486
+ batch_size: Optional[int] = None,
487
+ ) -> (list[Any], Any):
488
+ """
489
+ Execute graph as a job, from start to finish.
490
+
491
+ :param context: The job's execution client context.
492
+ :param data: The input data to the job, to be pushed into the graph row by row, or in batches.
493
+ :param batching: Whether to push one or more batches into the graph rather than row by row.
494
+ :param batch_size: The number of rows to push per batch. If not set, and batching=True, the entire dataset will
495
+ be pushed into the graph in one batch.
496
+
497
+ :return: A list of responses.
498
+ """
499
+ return asyncio.run(async_execute_graph(context, data, batching, batch_size))
500
+
501
+
408
502
  def _set_callbacks(server, context):
409
503
  if not server.graph.supports_termination() or not hasattr(context, "platform"):
410
504
  return
mlrun/serving/states.py CHANGED
@@ -966,7 +966,7 @@ class Model(storey.ParallelExecutionRunnable):
966
966
  ):
967
967
  super().__init__(name=name, raise_exception=raise_exception, **kwargs)
968
968
  if artifact_uri is not None and not isinstance(artifact_uri, str):
969
- raise MLRunInvalidArgumentError("artifact_uri argument must be a string")
969
+ raise MLRunInvalidArgumentError("'artifact_uri' argument must be a string")
970
970
  self.artifact_uri = artifact_uri
971
971
 
972
972
  def load(self) -> None:
@@ -979,7 +979,7 @@ class Model(storey.ParallelExecutionRunnable):
979
979
  return get_store_resource(self.artifact_uri)
980
980
  else:
981
981
  raise ValueError(
982
- "Could not get artifact, artifact_uri must be a valid artifact store URI"
982
+ "Could not get artifact, 'artifact_uri' must be a valid artifact store URI"
983
983
  )
984
984
  else:
985
985
  return None
@@ -1002,29 +1002,27 @@ class Model(storey.ParallelExecutionRunnable):
1002
1002
  return self.predict(body)
1003
1003
 
1004
1004
  def get_local_model_path(self, suffix="") -> (str, dict):
1005
- """get local model file(s) and extra data items by using artifact
1006
- If the model file is stored in remote cloud storage, download it to the local file system
1005
+ """
1006
+ Get local model file(s) and extra data items by using artifact.
1007
+
1008
+ If the model file is stored in remote cloud storage, this method downloads
1009
+ it to the local file system.
1010
+
1011
+ :param suffix: Optional; model file suffix (used when the model path is a directory).
1012
+ :type suffix: str
1013
+
1014
+ :return: A tuple containing:
1015
+ - str: Local model file path.
1016
+ - dict: Dictionary of extra data items.
1017
+ :rtype: tuple
1007
1018
 
1008
- Examples
1009
- --------
1010
- ::
1019
+ :example:
1011
1020
 
1012
1021
  def load(self):
1013
1022
  model_file, extra_data = self.get_local_model_path(suffix=".pkl")
1014
1023
  self.model = load(open(model_file, "rb"))
1015
1024
  categories = extra_data["categories"].as_df()
1016
1025
 
1017
- Parameters
1018
- ----------
1019
- suffix : str
1020
- optional, model file suffix (when the model_path is a directory)
1021
-
1022
- Returns
1023
- -------
1024
- str
1025
- (local) model file
1026
- dict
1027
- extra dataitems dictionary
1028
1026
  """
1029
1027
  artifact = self._get_artifact_object()
1030
1028
  if artifact:
mlrun/utils/helpers.py CHANGED
@@ -84,10 +84,6 @@ DEFAULT_TIME_PARTITIONS = ["year", "month", "day", "hour"]
84
84
  DEFAULT_TIME_PARTITIONING_GRANULARITY = "hour"
85
85
 
86
86
 
87
- class OverwriteBuildParamsWarning(FutureWarning):
88
- pass
89
-
90
-
91
87
  class StorePrefix:
92
88
  """map mlrun store objects to prefixes"""
93
89
 
@@ -912,6 +908,21 @@ def enrich_image_url(
912
908
  # it's an mlrun image if the repository is mlrun
913
909
  is_mlrun_image = image_url.startswith("mlrun/") or "/mlrun/" in image_url
914
910
 
911
+ if is_mlrun_image and "mlrun/ml-base" in image_url:
912
+ if tag:
913
+ if mlrun.utils.helpers.validate_component_version_compatibility(
914
+ "mlrun-client", "1.10.0", mlrun_client_version=tag
915
+ ):
916
+ warnings.warn(
917
+ "'mlrun/ml-base' image is deprecated in 1.10.0 and will be removed in 1.12.0, "
918
+ "use 'mlrun/mlrun' instead.",
919
+ # TODO: Remove this in 1.12.0
920
+ FutureWarning,
921
+ )
922
+ image_url = image_url.replace("mlrun/ml-base", "mlrun/mlrun")
923
+ else:
924
+ image_url = "mlrun/mlrun"
925
+
915
926
  if is_mlrun_image and tag and ":" not in image_url:
916
927
  image_url = f"{image_url}:{tag}"
917
928
 
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "79f44d5a732a54257206f3ef45da63447c1f1fbd",
3
- "version": "1.10.0-rc5"
2
+ "git_commit": "7e46ae9ef39327d23bfacc0910fef7b83e23e75d",
3
+ "version": "1.10.0-rc7"
4
4
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mlrun
3
- Version: 1.10.0rc5
3
+ Version: 1.10.0rc7
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
@@ -15,6 +15,7 @@ Classifier: Operating System :: Microsoft :: Windows
15
15
  Classifier: Operating System :: MacOS
16
16
  Classifier: Programming Language :: Python :: 3
17
17
  Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.11
18
19
  Classifier: Programming Language :: Python
19
20
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
21
  Classifier: Topic :: Software Development :: Libraries
@@ -44,7 +45,7 @@ Requires-Dist: semver~=3.0
44
45
  Requires-Dist: dependency-injector~=4.41
45
46
  Requires-Dist: fsspec<2024.7,>=2023.9.2
46
47
  Requires-Dist: v3iofs~=0.1.17
47
- Requires-Dist: storey~=1.10.0
48
+ Requires-Dist: storey~=1.10.2
48
49
  Requires-Dist: inflection~=0.5.0
49
50
  Requires-Dist: python-dotenv~=1.0
50
51
  Requires-Dist: setuptools>=75.2
@@ -1,6 +1,6 @@
1
1
  mlrun/__init__.py,sha256=uhNeFUVaV2spRa94u9tNZjMdLBixdu-9iY-uzORjsKQ,7448
2
- mlrun/__main__.py,sha256=6Mihuy3M7l80rJKM-MeKJdzwMbidfgVw-i7CxqToNnY,46351
3
- mlrun/config.py,sha256=C4qK2_M8p31egVvBUmSDKOe4TuYwGpG8TODyqdJ4vZo,71988
2
+ mlrun/__main__.py,sha256=ue7zqYt-0MjiSZodMSis_tctBCvVQmVHjmUQnR9lp0E,48019
3
+ mlrun/config.py,sha256=oe8n5N4r0s6mss99f2R1n0eQkHidXVtNIcTecVlCNkY,71986
4
4
  mlrun/errors.py,sha256=bAk0t_qmCxQSPNK0TugOAfA5R6f0G6OYvEvXUWSJ_5U,9062
5
5
  mlrun/execution.py,sha256=Yo1_UX9ARZ8IDYX6B5FPngnIy8hBhuzwL2-bIeXlMg8,54581
6
6
  mlrun/features.py,sha256=jMEXo6NB36A6iaxNEJWzdtYwUmglYD90OIKTIEeWhE8,15841
@@ -14,14 +14,14 @@ 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=b8pOb-hPeojIisSSiy5zwMh-uZAebyB2mAnmGGLe5Sc,13919
16
16
  mlrun/artifacts/__init__.py,sha256=ZrEUNto7tGdnBGteCp9zOyO8b78z7O3xgcpzUt9UHE4,1240
17
- mlrun/artifacts/base.py,sha256=y-YUdMvLvRRdkgp8c5rq8XyDyyT7ktLOZThbxNSmIKg,30529
18
- mlrun/artifacts/dataset.py,sha256=p8Rk0yrBUszh4pe7VLfcUK9piD-J_UX_X6gU5fYCyQg,16665
17
+ mlrun/artifacts/base.py,sha256=CdkV1_rSv9xmnz-Mg9pHFaBYfruC0BKiMjj8yFEmoI8,29458
18
+ mlrun/artifacts/dataset.py,sha256=7SRKvLbV7KJ2JN2s_Q45kuz74qovTvOZSz88HKM4JfA,16359
19
19
  mlrun/artifacts/document.py,sha256=p5HsWdmIIJ0NahS7y3EEQN2tfHtUrUmUG-8BEEyi_Jc,17373
20
20
  mlrun/artifacts/helpers.py,sha256=ejTEC9vkI2w5FHn5Gopw3VEIxuni0bazWUnR6BBWZfU,1662
21
21
  mlrun/artifacts/llm_prompt.py,sha256=19ubV9owECwqb73wDnS8lED_siWYoJCRsrK_Td0DXdo,5428
22
22
  mlrun/artifacts/manager.py,sha256=ylCmwTSDxPWYTBBW7v90XLYy7CYS7xVydj-D-kWY7bU,16827
23
- mlrun/artifacts/model.py,sha256=1yeg923wJQdziebiY80yjSSm25FgGfzljB1AT-nbB8c,25848
24
- mlrun/artifacts/plots.py,sha256=TxOHBaGbj7fEKNTHVIM_uxQjqPLpU3Rh1pqGh2_inuo,4833
23
+ mlrun/artifacts/model.py,sha256=YlhD0zX8UhuEjTWD7NNnWcRCpjF1S2_6IpE0a1VHEHM,25589
24
+ mlrun/artifacts/plots.py,sha256=wmaxVXiAPSCyn3M7pIlcBu9pP3O8lrq0Ewx6iHRDF9s,4238
25
25
  mlrun/common/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
26
26
  mlrun/common/constants.py,sha256=Yj5YHANbpKHDKxZ1y5bV1wifvV3UQZ2QuvECUuYhrpM,3594
27
27
  mlrun/common/helpers.py,sha256=DIdqs_eN3gO5bZ8iFobIvx8cEiOxYxhFIyut6-O69T0,1385
@@ -65,7 +65,7 @@ mlrun/common/schemas/object.py,sha256=9g2bK3KUXmzhaGavbmpVf6rxDhquYogp8bb12dzP4X
65
65
  mlrun/common/schemas/pagination.py,sha256=8NEmiIkCXw5_sv-lE0MWgWz-WpxhSSn-vBtbPDBOGXc,899
66
66
  mlrun/common/schemas/partition.py,sha256=crl61DzS-9i5rCyHUbjtpTCk03lluxfb2dS0o1gdLH4,5920
67
67
  mlrun/common/schemas/pipeline.py,sha256=lzaNHudyOiSMpNsoKoNMZhJJa2R4wdA4TR8A98L_yIo,996
68
- mlrun/common/schemas/project.py,sha256=Q2jznR4S_xolyKQQFlThIShZgiTaVgL56bAdy3tjE6A,5871
68
+ mlrun/common/schemas/project.py,sha256=_u8yvu9oZDlVllrxVKVvaAJs6RI5Cvb4wq4Axeo4VQc,5959
69
69
  mlrun/common/schemas/regex.py,sha256=r-phg_9ge1lFraPCQd_wpnYGQ1oOCj3xChycJxZtIQY,775
70
70
  mlrun/common/schemas/runs.py,sha256=yKY29ByTS4SruWQyPpDNFGulMrcT9Ms-3lnwBUDp3us,751
71
71
  mlrun/common/schemas/runtime_resource.py,sha256=TybJmCHJXmm1z3s5J1dd89TeFE6lG5t7vjcrf1R9YfE,1568
@@ -74,8 +74,9 @@ mlrun/common/schemas/secret.py,sha256=Td2UAeWHSAdA4nIP3rQv_PIVKVqcBnCnK6xjr528tS
74
74
  mlrun/common/schemas/serving.py,sha256=wQYco1DvUp8rhltLWsHwrk-sAVcIlw5PjcMvbAMnIi8,1135
75
75
  mlrun/common/schemas/tag.py,sha256=1wqEiAujsElojWb3qmuyfcaLFjXSNAAQdafkDx7fkn0,891
76
76
  mlrun/common/schemas/workflow.py,sha256=iZySnpro7UatEePH6S542c7xy9H2v1h6mx5n-gz9Oeg,2107
77
- mlrun/common/schemas/model_monitoring/__init__.py,sha256=SxHG-GIdcTEuFxpKzkUdT9zKaU5Xqz9qF1uCwXvZ2z8,1709
78
- mlrun/common/schemas/model_monitoring/constants.py,sha256=wbNe_n5wX98gD1XQ6jmt97Jh59S9GsE54UBPZl9Pg20,12570
77
+ mlrun/common/schemas/model_monitoring/__init__.py,sha256=wxrE4ACgNtXm5uui8a0ljOuwIoIkVl7e1atSizYVqhE,1763
78
+ mlrun/common/schemas/model_monitoring/constants.py,sha256=eSXyWG7rzgCVSxjPPlLC8f0ClC4I09zsCiwBxnkFLlA,12831
79
+ mlrun/common/schemas/model_monitoring/functions.py,sha256=OKBt029ap6dD-1pFTN4z1u7IkRpiH0HCjbrJoAWUFnE,2123
79
80
  mlrun/common/schemas/model_monitoring/grafana.py,sha256=THQlLfPBevBksta8p5OaIsBaJtsNSXexLvHrDxOaVns,2095
80
81
  mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=YYFai89qBTnKM8dSUncVD25uwz8QdcTLrEb7vMefyTc,12391
81
82
  mlrun/data_types/__init__.py,sha256=wdxGS1PTnaKXiNZ7PYGxxo86OifHH7NYoArIjDJksLA,1054
@@ -110,10 +111,10 @@ mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev
110
111
  mlrun/datastore/wasbfs/fs.py,sha256=ge8NK__5vTcFT-krI155_8RDUywQw4SIRX6BWATXy9Q,6299
111
112
  mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
112
113
  mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
113
- mlrun/db/base.py,sha256=dzOmf86zcblTpffk7hxYPYz18IVJPAJ8ne8NoKyDUu4,30857
114
+ mlrun/db/base.py,sha256=eGeN-OHBTgvgSSaTWcJouDVtHt1Qouz3UftEp-jMsu4,30688
114
115
  mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
115
- mlrun/db/httpdb.py,sha256=8D9QTq2CZL9fkhY4fowA0nlS26rNT2THsxsbPwGT_MY,233123
116
- mlrun/db/nopdb.py,sha256=hQ_tkQjOszgBQxEKL-tDULfA7KgwP3z-frFJiW-uL18,27234
116
+ mlrun/db/httpdb.py,sha256=YAKQ3x6jXWBomyEv7hKI6PrYvO3CyukbYFZ7rHu2-Wk,231788
117
+ mlrun/db/nopdb.py,sha256=voX-gfkA5OiwYRCqvqbwjA6Racz76E5L3RanHJfq2r8,27262
117
118
  mlrun/feature_store/__init__.py,sha256=SlI845bWt6xX34SXunHHqhmFAR9-5v2ak8N-qpcAPGo,1328
118
119
  mlrun/feature_store/api.py,sha256=qKj5Tk6prTab6XWatWhBuPRVp0eJEctoxRMN2wz48vA,32168
119
120
  mlrun/feature_store/common.py,sha256=JlQA7XWkg9fLuw7cXFmWpUneQqM3NBhwv7DU_xlenWI,12819
@@ -214,21 +215,21 @@ mlrun/frameworks/xgboost/mlrun_interface.py,sha256=KINOf0udbY75raTewjEFGNlIRyE0e
214
215
  mlrun/frameworks/xgboost/model_handler.py,sha256=bJq4D1VK3rzhALovqIV5mS0LvGiTlsgAkHanD25pU2c,11663
215
216
  mlrun/frameworks/xgboost/utils.py,sha256=4rShiFChzDbWJ4HoTo4qV_lj-Z89pHBAp6Z1yHmU8wA,1068
216
217
  mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
217
- mlrun/launcher/base.py,sha256=VUjXoYcCopdJgSTkGDPOJWcZavKDoqmExv7GjqyRiws,16481
218
- mlrun/launcher/client.py,sha256=iZS5rqIf2do1XNGJ4oyQHkdQtndr48l9Mffs_xCI_NI,6280
218
+ mlrun/launcher/base.py,sha256=bzxkmtpfvjJGaLQ82KdTirSuKHPy4f-fveraHrkbwAU,16515
219
+ mlrun/launcher/client.py,sha256=WQuPD_t0E-BW8yCc8VoPMMKNEtczITk8TmjRPi2ILDM,7272
219
220
  mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
220
- mlrun/launcher/local.py,sha256=9XEkWSRYokXbtL1d_XEH3yTNU2fQXX7JcUwfC_8NG_4,11457
221
+ mlrun/launcher/local.py,sha256=BCA8WQc8yDjJTzktyBRxB0iiWEXOW7832tV9KsAZkn8,11639
221
222
  mlrun/launcher/remote.py,sha256=GYXsxVIwcUZ1V-cv2R3Yk4nSoUeAtRurEawrUN3AkEE,7715
222
223
  mlrun/model_monitoring/__init__.py,sha256=2zigVN5JUnOhRcqGBd4gj0ctubVlyEvxmxXix0De5GQ,709
223
224
  mlrun/model_monitoring/api.py,sha256=lAsUp-gzqw8D1cpHVGA2_nPMYn5R4jdxk9UaGOiQ8fE,25945
224
225
  mlrun/model_monitoring/controller.py,sha256=CQxK9Sq5k8XonvVBQnSimakpTwMMAyqT5mOaG534MaM,37660
225
226
  mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
226
- mlrun/model_monitoring/helpers.py,sha256=8QsoYRPOVSnR3Lcv99m4XYrp_cR6hSqBUflYSOkJmFQ,21019
227
+ mlrun/model_monitoring/helpers.py,sha256=F1jkhiHShvuiavl21Eus1FuCoRHBe85cJvOQUDWlaEI,20939
227
228
  mlrun/model_monitoring/stream_processing.py,sha256=Gu3TQzYoNjbreZYI73-F49QpYrod9RZOyGSgininBsA,33373
228
229
  mlrun/model_monitoring/writer.py,sha256=rGRFzSOkqZWvD3Y6sVk2H1Gepfnkzkp9ce00PsApTLo,8288
229
230
  mlrun/model_monitoring/applications/__init__.py,sha256=MaH_n4GiqqQvSkntM5yQ7_FCANtM_IfgK-IJTdo4G_E,757
230
- mlrun/model_monitoring/applications/_application_steps.py,sha256=mjuBVqa7KY_Ymoo8DzddthUpBZyfio2e4O5ce-d-2eY,8444
231
- mlrun/model_monitoring/applications/base.py,sha256=7x7qOnJZ5yoab1EWdG_5PNh5AOGM9mQkUJ_2hznUG3A,25425
231
+ mlrun/model_monitoring/applications/_application_steps.py,sha256=t9LDIqQUGE10cyjyhlg0QqN1yVx0apD1HpERYLJfm8U,7409
232
+ mlrun/model_monitoring/applications/base.py,sha256=NBIlsiB91it__JfUQHL28YzIzkCg-Enb8w4oYCZlkYs,31528
232
233
  mlrun/model_monitoring/applications/context.py,sha256=VfyPCIdO4z73uqFcJs87jzSI4PatX5N5Xicg8Ye1Bag,16968
233
234
  mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=2qgfFmrpHf-x0_EaHD-0T28piwSQzw-HH71aV1GwbZs,15389
234
235
  mlrun/model_monitoring/applications/results.py,sha256=_qmj6TWT0SR2bi7gUyRKBU418eGgGoLW2_hTJ7S-ock,5782
@@ -238,16 +239,16 @@ mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJC
238
239
  mlrun/model_monitoring/db/_schedules.py,sha256=RWn4wtKsIXg668gMLpxO9I8GlkxvPSaA5y7w-wFDcgE,9048
239
240
  mlrun/model_monitoring/db/_stats.py,sha256=VVMWLMqG3Us3ozBkLaokJF22Ewv8WKmVE1-OvS_g9vA,6943
240
241
  mlrun/model_monitoring/db/tsdb/__init__.py,sha256=4S86V_Ot_skE16SLkw0WwsaAUB0ECH6SoJdp-TIu6s8,4645
241
- mlrun/model_monitoring/db/tsdb/base.py,sha256=mvV9S_adfKaAObzT2w6m4ko30UnRxPrh30eL0dshVyA,26914
242
+ mlrun/model_monitoring/db/tsdb/base.py,sha256=IyuxnQOzJEV6EQYtZhCoSOacLYfwNeerfgzrf7r3-K0,28526
242
243
  mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
243
244
  mlrun/model_monitoring/db/tsdb/tdengine/__init__.py,sha256=vgBdsKaXUURKqIf3M0y4sRatmSVA4CQiJs7J5dcVBkQ,620
244
245
  mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=EslhaR65jfeNdD5Ibk-3Hb4e5r5qYPfHb9rTChX3sG0,12689
245
246
  mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py,sha256=Uadj0UvAmln2MxDWod-kAzau1uNlqZh981rPhbUH_5M,2857
246
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connection.py,sha256=8xo2O_yQrJGNDoYYB3Bwtdwwvzs3U9dT3BtPot0zENQ,6449
247
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=h0ZrNgOwTlBRd_DaYDc6eeVM9f_8CLJMUPEAIrZpbyU,37803
247
+ mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connection.py,sha256=dtkaHaWKWERPXylEWMECeetwrz3rWl0P43AADcTjlls,9330
248
+ mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=BFLrM96YGUwde31ZfClkN-gg4Ph6GB3bwtsYKr1Ldho,41633
248
249
  mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
249
250
  mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=_-zo9relCDtjGgievxAcAP9gVN9nDWs8BzGtFwTjb9M,6284
250
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=aDdyHWJLOG-3EgPTJgbEzOOQf5NetpFQk_HdQbs5_zI,47160
251
+ mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=Tmwi5fuuDYqyf7MTdQSksOxatgBIiEx3PSrK46BpBjU,50353
251
252
  mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
252
253
  mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
253
254
  mlrun/package/__init__.py,sha256=v7VDyK9kDOOuDvFo4oiGV2fx-vM1KL7fdN9pGLakhUQ,7008
@@ -270,45 +271,45 @@ mlrun/package/utils/type_hint_utils.py,sha256=Ic3A7C9KnbfdLe-nUgzGoefBnsvOJJP9ip
270
271
  mlrun/platforms/__init__.py,sha256=ZuyeHCHHUxYEoZRmaJqzFSfwhaTyUdBZXMeVp75ql1w,3551
271
272
  mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13749
272
273
  mlrun/projects/__init__.py,sha256=0Krf0WIKfnZa71WthYOg0SoaTodGg3sV_hK3f_OlTPI,1220
273
- mlrun/projects/operations.py,sha256=dbCWb-KNlIIJeZH9lp4Y2PxkYMkZI2pJPYbMSbiDWe4,20840
274
+ mlrun/projects/operations.py,sha256=Aa3qDjEOLI1JTvm3t3VaESeJ4511e_vOR-GqVaEy-yI,20237
274
275
  mlrun/projects/pipelines.py,sha256=wud7ezeEmhIJvfYE_wzQbA4ygEfGXHtbOtoOpan6poY,48556
275
- mlrun/projects/project.py,sha256=Fqk_YCmuNSHCk1SKVYkAboxgFHOUZcsQ1DmJp2oYjCg,250056
276
+ mlrun/projects/project.py,sha256=0VyBEP021PqX0y20ANP0n1IavEDoJ4UKgqkANnyAe68,250001
276
277
  mlrun/runtimes/__init__.py,sha256=J9Sy2HiyMlztNv6VUurMzF5H2XzttNil8nRsWDsqLyg,8923
277
- mlrun/runtimes/base.py,sha256=QsHYTIMlfzElbGZ3yAzyHK5IdXFIfsYIv3dRUnN7c44,38493
278
- mlrun/runtimes/daskjob.py,sha256=_nN70OLkscIKUp14rAsHGxCB5lLiAxw8f0m2vj-gWN8,19827
278
+ mlrun/runtimes/base.py,sha256=FmjyXA5MhOUOe8TxNpC3p8nc_IwGGaC2ZPrgTylzFXk,37325
279
+ mlrun/runtimes/daskjob.py,sha256=1VYia3vEgArKNyZe-yJjQevhifWO6F5gP1Q44y-tKqk,19842
279
280
  mlrun/runtimes/funcdoc.py,sha256=zRFHrJsV8rhDLJwoUhcfZ7Cs0j-tQ76DxwUqdXV_Wyc,9810
280
281
  mlrun/runtimes/function_reference.py,sha256=fnMKUEieKgy4JyVLhFpDtr6JvKgOaQP8F_K2H3-Pk9U,5030
281
282
  mlrun/runtimes/generators.py,sha256=X8NDlCEPveDDPOHtOGcSpbl3pAVM3DP7fuPj5xVhxEY,7290
282
- mlrun/runtimes/kubejob.py,sha256=xt6NyPiIiPYmGDFtTe4RHF-zhrFdgwcnRr2NQEBB5NI,8799
283
+ mlrun/runtimes/kubejob.py,sha256=wadCzmSgjv9OU_Ax8CQNHfXLo0v-ev9ZGHUFGcNc9Qw,8577
283
284
  mlrun/runtimes/local.py,sha256=yedo3R1c46cB1mX7aOz8zORXswQPvX86U-_fYxXoqTY,22717
284
285
  mlrun/runtimes/mounts.py,sha256=2dkoktm3TXHe4XHmRhvC0UfvWzq2vy_13MeaW7wgyPo,18735
285
- mlrun/runtimes/pod.py,sha256=nucFAGTcKbN79VRs06NVmcEnahtkQAsX_9MDDum3_Zg,51755
286
- mlrun/runtimes/remotesparkjob.py,sha256=2B63b9AFEUguEaIY1k2VU77Jur-16t0dYAN6IUNk5_c,7705
286
+ mlrun/runtimes/pod.py,sha256=YwkvZQqj2M2YP1xg6ECbzh-DfcBo9rJCIJxfrsJ8thA,51711
287
+ mlrun/runtimes/remotesparkjob.py,sha256=IMnolOY6jh1xMrCtxs-awUqQoWVgRpan4l0b91vUqdI,7693
287
288
  mlrun/runtimes/utils.py,sha256=VFKA7dWuILAcJGia_7Pw_zBBG00wZlat7o2N6u5EItw,16284
288
289
  mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
289
290
  mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=ufjcLKA5E6FSDF5CXm5l8uP_mUSFppwr5krLHln1kAU,2243
290
- mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=qLhK_XOjso4hYH6cvN-n-c_kEeKdbDjeYnif5hnFCOg,12888
291
+ mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=YOJdyIEeKbn9jKxSciciZE9RBsH7Hbk7n-3T_8NLz_w,12810
291
292
  mlrun/runtimes/databricks_job/databricks_wrapper.py,sha256=jD1T36pRmSFRGgJVGRzccYJxwYH8eVze_FJrF2aSS-g,8682
292
293
  mlrun/runtimes/mpijob/__init__.py,sha256=6sUPQRFwigi4mqjDVZmRE-qgaLw2ILY5NbneVUuMKto,947
293
- mlrun/runtimes/mpijob/abstract.py,sha256=JGMjcJ4dvpJbctF6psU9UvYyNCutMxTMgBQeTlzpkro,9249
294
- mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
294
+ mlrun/runtimes/mpijob/abstract.py,sha256=AJYRF4Jv0NWTUY3buri3XbbrXqC1ZMPHKLKUMcqWRW8,9237
295
+ mlrun/runtimes/mpijob/v1.py,sha256=k04Tu1Y58tt9qckyR6Kd8l6O3fLMGvGyAzxYunfpqEE,3201
295
296
  mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
296
297
  mlrun/runtimes/nuclio/api_gateway.py,sha256=vH9ClKVP4Mb24rvA67xPuAvAhX-gAv6vVtjVxyplhdc,26969
297
- mlrun/runtimes/nuclio/function.py,sha256=JgqMf_nG19O-XRzy3QkvaVHvbPRXiuoS8FUJvOQmqrs,54720
298
+ mlrun/runtimes/nuclio/function.py,sha256=odONJcrnhZT8veIyvd3ygEfUxP0cDEceTfP91mg1XAA,54352
298
299
  mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
299
- mlrun/runtimes/nuclio/serving.py,sha256=8q3ClEqshYqZw6vdwxRfLJ2nchTY63nbLjcu_xmtsAU,32903
300
+ mlrun/runtimes/nuclio/serving.py,sha256=k2ExmWOAJ2E_dlnQj87wTzDWU4dTFjYUdK5rGvyx-no,34473
300
301
  mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
301
- mlrun/runtimes/nuclio/application/application.py,sha256=VPX-ruYQJ7-7yd5c2sWdF4U5JCGSS3kYjUfOgev6l_Y,29186
302
+ mlrun/runtimes/nuclio/application/application.py,sha256=3WeVCeVUb6U5wJDVJSuTDzJ-Pcr3ifg08E4gKIEIkmo,28945
302
303
  mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=lEHH74vr2PridIHp1Jkc_NjkrWb5b6zawRrNxHQhwGU,2913
303
304
  mlrun/runtimes/sparkjob/__init__.py,sha256=GPP_ekItxiU9Ydn3mJa4Obph02Bg6DO-JYs791_MV58,607
304
- mlrun/runtimes/sparkjob/spark3job.py,sha256=gPUitVuSnVw_OaDUtvNpwZwu-ryk4PQXGuZjpZ5uElc,41299
305
+ mlrun/runtimes/sparkjob/spark3job.py,sha256=5TdmQy5yDBtaq9y9fQGrNYTJ_0UqR9VnV7-SGiZEOyc,41287
305
306
  mlrun/serving/__init__.py,sha256=ujpKHIsHXJz5TELwEIsjMbijxONRg7kZ6ZcVONcRjcs,1324
306
307
  mlrun/serving/merger.py,sha256=pfOQoozUyObCTpqXAMk94PmhZefn4bBrKufO3MKnkAc,6193
307
308
  mlrun/serving/remote.py,sha256=Igha2FipK3-6rV_PZ1K464kTbiTu8rhc6SMm-HiEJ6o,18817
308
309
  mlrun/serving/routers.py,sha256=SY6AsaiSnh8ssXq8hQE2z9MYapOxFOFJBx9QomiZMO8,53915
309
- mlrun/serving/server.py,sha256=ZjrNvrp87IMJFM0EZwzRKl42nR4RoP3U6frqKJ6FqcI,24847
310
+ mlrun/serving/server.py,sha256=tnoxSh5Et3VnPGfGs2D6-5UwZ8M_MZr-juuUl2SbzGc,27561
310
311
  mlrun/serving/serving_wrapper.py,sha256=UL9hhWCfMPcTJO_XrkvNaFvck1U1E7oS8trTZyak0cA,835
311
- mlrun/serving/states.py,sha256=7ESFzy1aDJgvMWlImSeLh6zfbKw3-mM6j-aPyy3rUhU,82967
312
+ mlrun/serving/states.py,sha256=shsZYuR9hbzCywt5ClEbXEH8SsbWduWzhfeUlj0dJJk,82988
312
313
  mlrun/serving/utils.py,sha256=Zbfqm8TKNcTE8zRBezVBzpvR2WKeKeIRN7otNIaiYEc,4170
313
314
  mlrun/serving/v1_serving.py,sha256=c6J_MtpE-Tqu00-6r4eJOCO6rUasHDal9W2eBIcrl50,11853
314
315
  mlrun/serving/v2_serving.py,sha256=p194GSVm5YU0_FEgtchMf0RkBCMyDaRZlrl8pceseHA,25377
@@ -323,7 +324,7 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
323
324
  mlrun/utils/clones.py,sha256=qbAGyEbSvlewn3Tw_DpQZP9z6MGzFhSaZfI1CblX8Fg,7515
324
325
  mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
325
326
  mlrun/utils/db.py,sha256=UIYDPHvPxim8tpjeD4S2QbfTx9Bhe-VqUQjqYTRHFuo,2185
326
- mlrun/utils/helpers.py,sha256=7VnHx4CAJKGLe9WGlyFXdYlKL_dM9-qkffciZX0rXio,79212
327
+ mlrun/utils/helpers.py,sha256=6M-lYWC0k8B8N0p4pZRUhmIYc8ycN-9gXL4MqJZ0foc,79797
327
328
  mlrun/utils/http.py,sha256=5ZU2VpokaUM_DT3HBSqTm8xjUqTPjZN5fKkSIvKlTl0,8704
328
329
  mlrun/utils/logger.py,sha256=RG0m1rx6gfkJ-2C1r_p41MMpPiaDYqaYM2lYHDlNZEU,14767
329
330
  mlrun/utils/regex.py,sha256=FcRwWD8x9X3HLhCCU2F0AVKTFah784Pr7ZAe3a02jw8,5199
@@ -342,11 +343,11 @@ mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAq
342
343
  mlrun/utils/notifications/notification/slack.py,sha256=kfhogR5keR7Zjh0VCjJNK3NR5_yXT7Cv-x9GdOUW4Z8,7294
343
344
  mlrun/utils/notifications/notification/webhook.py,sha256=zxh8CAlbPnTazsk6r05X5TKwqUZVOH5KBU2fJbzQlG4,5330
344
345
  mlrun/utils/version/__init__.py,sha256=YnzE6tlf24uOQ8y7Z7l96QLAI6-QEii7-77g8ynmzy0,613
345
- mlrun/utils/version/version.json,sha256=W8XgYUjL11RNE-X6HEv8SjYxylK4rnmPLRcxKiLk2-Q,89
346
+ mlrun/utils/version/version.json,sha256=li-8NUYi_wiGUc4flqnLjL1fxgV7eR_wG7e-xtHG8wI,89
346
347
  mlrun/utils/version/version.py,sha256=M2hVhRrgkN3SxacZHs3ZqaOsqAA7B6a22ne324IQ1HE,1877
347
- mlrun-1.10.0rc5.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
348
- mlrun-1.10.0rc5.dist-info/METADATA,sha256=2NtzMXeQa_t0ZXLxOPuYDOhv3_GRXkCk_LfMaF42RHs,25777
349
- mlrun-1.10.0rc5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
350
- mlrun-1.10.0rc5.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
351
- mlrun-1.10.0rc5.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
352
- mlrun-1.10.0rc5.dist-info/RECORD,,
348
+ mlrun-1.10.0rc7.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
349
+ mlrun-1.10.0rc7.dist-info/METADATA,sha256=nZQGcdppHPDSON94I3kdyipixcAC09ALG46FYIH-KZw,25828
350
+ mlrun-1.10.0rc7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
351
+ mlrun-1.10.0rc7.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
352
+ mlrun-1.10.0rc7.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
353
+ mlrun-1.10.0rc7.dist-info/RECORD,,