mlrun 1.6.0rc20__py3-none-any.whl → 1.6.0rc22__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 (51) hide show
  1. mlrun/artifacts/base.py +6 -6
  2. mlrun/artifacts/dataset.py +15 -8
  3. mlrun/artifacts/manager.py +6 -3
  4. mlrun/artifacts/model.py +2 -2
  5. mlrun/artifacts/plots.py +8 -8
  6. mlrun/config.py +1 -1
  7. mlrun/data_types/to_pandas.py +1 -1
  8. mlrun/datastore/azure_blob.py +12 -16
  9. mlrun/datastore/base.py +32 -10
  10. mlrun/datastore/datastore_profile.py +4 -4
  11. mlrun/datastore/dbfs_store.py +12 -11
  12. mlrun/datastore/filestore.py +2 -1
  13. mlrun/datastore/google_cloud_storage.py +11 -10
  14. mlrun/datastore/redis.py +2 -1
  15. mlrun/datastore/s3.py +12 -15
  16. mlrun/datastore/sources.py +16 -11
  17. mlrun/datastore/targets.py +2 -13
  18. mlrun/datastore/v3io.py +18 -20
  19. mlrun/db/httpdb.py +76 -7
  20. mlrun/errors.py +4 -0
  21. mlrun/execution.py +13 -4
  22. mlrun/feature_store/api.py +3 -4
  23. mlrun/launcher/base.py +4 -4
  24. mlrun/lists.py +0 -6
  25. mlrun/model.py +8 -1
  26. mlrun/model_monitoring/api.py +9 -31
  27. mlrun/model_monitoring/batch.py +14 -13
  28. mlrun/model_monitoring/controller.py +100 -70
  29. mlrun/model_monitoring/controller_handler.py +1 -3
  30. mlrun/model_monitoring/helpers.py +65 -20
  31. mlrun/model_monitoring/stream_processing.py +0 -3
  32. mlrun/projects/operations.py +1 -1
  33. mlrun/projects/project.py +10 -4
  34. mlrun/runtimes/base.py +6 -1
  35. mlrun/runtimes/constants.py +11 -0
  36. mlrun/runtimes/databricks_job/databricks_runtime.py +7 -9
  37. mlrun/runtimes/kubejob.py +1 -1
  38. mlrun/runtimes/local.py +64 -53
  39. mlrun/runtimes/serving.py +8 -1
  40. mlrun/serving/routers.py +7 -20
  41. mlrun/serving/server.py +4 -14
  42. mlrun/serving/utils.py +0 -3
  43. mlrun/utils/helpers.py +10 -2
  44. mlrun/utils/logger.py +5 -5
  45. mlrun/utils/version/version.json +2 -2
  46. {mlrun-1.6.0rc20.dist-info → mlrun-1.6.0rc22.dist-info}/METADATA +5 -3
  47. {mlrun-1.6.0rc20.dist-info → mlrun-1.6.0rc22.dist-info}/RECORD +51 -51
  48. {mlrun-1.6.0rc20.dist-info → mlrun-1.6.0rc22.dist-info}/LICENSE +0 -0
  49. {mlrun-1.6.0rc20.dist-info → mlrun-1.6.0rc22.dist-info}/WHEEL +0 -0
  50. {mlrun-1.6.0rc20.dist-info → mlrun-1.6.0rc22.dist-info}/entry_points.txt +0 -0
  51. {mlrun-1.6.0rc20.dist-info → mlrun-1.6.0rc22.dist-info}/top_level.txt +0 -0
mlrun/runtimes/kubejob.py CHANGED
@@ -134,7 +134,7 @@ class KubejobRuntime(KubeResource):
134
134
  if not overwrite:
135
135
  # TODO: change overwrite default to True in 1.8.0
136
136
  warnings.warn(
137
- "The `overwrite` parameter default will change from 'False' to 'True in 1.8.0.",
137
+ "The `overwrite` parameter default will change from 'False' to 'True' in 1.8.0.",
138
138
  mlrun.utils.OverwriteBuildParamsWarning,
139
139
  )
140
140
  image = mlrun.utils.helpers.remove_image_protocol_prefix(image)
mlrun/runtimes/local.py CHANGED
@@ -307,7 +307,7 @@ class LocalRuntime(BaseRuntime, ParallelRunner):
307
307
 
308
308
  # if RunError was raised it means that the error was raised as part of running the function
309
309
  # ( meaning the state was already updated to error ) therefore we just re-raise the error
310
- except (RunError, mlrun.errors.MLRunTaskCancelledError) as err:
310
+ except RunError as err:
311
311
  raise err
312
312
  # this exception handling is for the case where we fail on pre-loading or post-running the function
313
313
  # and the state was not updated to error yet, therefore we update the state to error and raise as RunError
@@ -451,58 +451,69 @@ class _DupStdout(object):
451
451
 
452
452
  def exec_from_params(handler, runobj: RunObject, context: MLClientCtx, cwd=None):
453
453
  old_level = logger.level
454
- if runobj.spec.verbose:
455
- logger.set_logger_level("DEBUG")
456
-
457
- # Prepare the inputs type hints (user may pass type hints as part of the input keys):
458
- runobj.spec.extract_type_hints_from_inputs()
459
- # Read the keyword arguments to pass to the function (combining params and inputs from the run spec):
460
- kwargs = get_func_arg(handler, runobj, context)
461
-
462
- stdout = _DupStdout()
463
- err = ""
464
- val = None
465
- old_dir = os.getcwd()
466
- with redirect_stdout(stdout):
467
- context.set_logger_stream(stdout)
468
- try:
469
- if cwd:
470
- os.chdir(cwd)
471
- # Apply the MLRun handler decorator for parsing inputs using type hints and logging outputs using log hints
472
- # (Expected behavior: inputs are being parsed when they have type hints in code or given by user. Outputs
473
- # are logged only if log hints are provided by the user):
474
- if mlrun.mlconf.packagers.enabled:
475
- val = mlrun.handler(
476
- inputs=(
477
- runobj.spec.inputs_type_hints
478
- if runobj.spec.inputs_type_hints
479
- else True # True will use type hints if provided in user's code.
480
- ),
481
- outputs=(
482
- runobj.spec.returns
483
- if runobj.spec.returns
484
- else None # None will turn off outputs logging.
485
- ),
486
- )(handler)(**kwargs)
487
- else:
488
- val = handler(**kwargs)
489
- context.set_state("completed", commit=False)
490
- except Exception as exc:
491
- err = err_to_str(exc)
492
- logger.error(f"Execution error, {traceback.format_exc()}")
493
- context.set_state(error=err, commit=False)
494
- logger.set_logger_level(old_level)
495
-
496
- stdout.flush()
497
- if cwd:
498
- os.chdir(old_dir)
499
- context.set_logger_stream(sys.stdout)
500
- if val:
501
- context.log_result("return", val)
502
-
503
- # completion will be ignored if error is set
504
- context.commit(completed=True)
505
- logger.set_logger_level(old_level)
454
+ try:
455
+ if runobj.spec.verbose:
456
+ logger.set_logger_level("DEBUG")
457
+
458
+ # Prepare the inputs type hints (user may pass type hints as part of the input keys):
459
+ runobj.spec.extract_type_hints_from_inputs()
460
+ # Read the keyword arguments to pass to the function (combining params and inputs from the run spec):
461
+ kwargs = get_func_arg(handler, runobj, context)
462
+
463
+ stdout = _DupStdout()
464
+ err = ""
465
+ val = None
466
+ old_dir = os.getcwd()
467
+ commit = True
468
+ with redirect_stdout(stdout):
469
+ context.set_logger_stream(stdout)
470
+ try:
471
+ if cwd:
472
+ os.chdir(cwd)
473
+ # Apply the MLRun handler decorator for parsing inputs using type hints and logging outputs using
474
+ # log hints (Expected behavior: inputs are being parsed when they have type hints in code or given
475
+ # by user. Outputs are logged only if log hints are provided by the user):
476
+ if mlrun.mlconf.packagers.enabled:
477
+ val = mlrun.handler(
478
+ inputs=(
479
+ runobj.spec.inputs_type_hints
480
+ if runobj.spec.inputs_type_hints
481
+ else True # True will use type hints if provided in user's code.
482
+ ),
483
+ outputs=(
484
+ runobj.spec.returns
485
+ if runobj.spec.returns
486
+ else None # None will turn off outputs logging.
487
+ ),
488
+ )(handler)(**kwargs)
489
+ else:
490
+ val = handler(**kwargs)
491
+ context.set_state("completed", commit=False)
492
+ except mlrun.errors.MLRunTaskCancelledError as exc:
493
+ logger.warning("Run was aborted", err=err_to_str(exc))
494
+ # Run was aborted, the state run state is updated by the abort job, no need to commit again
495
+ context.set_state(
496
+ mlrun.runtimes.constants.RunStates.aborted, commit=False
497
+ )
498
+ commit = False
499
+ except Exception as exc:
500
+ err = err_to_str(exc)
501
+ logger.error(f"Execution error, {traceback.format_exc()}")
502
+ context.set_state(error=err, commit=False)
503
+
504
+ stdout.flush()
505
+ if cwd:
506
+ os.chdir(old_dir)
507
+ context.set_logger_stream(sys.stdout)
508
+ if val:
509
+ context.log_result("return", val)
510
+
511
+ if commit:
512
+ # completion will be ignored if error is set
513
+ context.commit(completed=True)
514
+
515
+ finally:
516
+ logger.set_logger_level(old_level)
506
517
  return stdout.buf.getvalue(), err
507
518
 
508
519
 
mlrun/runtimes/serving.py CHANGED
@@ -482,13 +482,13 @@ class ServingRuntime(RemoteRuntime):
482
482
  trigger_args["explicit_ack_mode"] = trigger_args.get(
483
483
  "explicit_ack_mode", "explicitOnly"
484
484
  )
485
- trigger_args["max_workers"] = trigger_args.get("max_workers", 4)
486
485
  extra_attributes = trigger_args.get("extra_attributes", {})
487
486
  trigger_args["extra_attributes"] = extra_attributes
488
487
  extra_attributes["workerAllocationMode"] = extra_attributes.get(
489
488
  "workerAllocationMode", "static"
490
489
  )
491
490
 
491
+ max_workers_default = 4
492
492
  if (
493
493
  stream.path.startswith("kafka://")
494
494
  or "kafka_bootstrap_servers" in stream.options
@@ -497,6 +497,9 @@ class ServingRuntime(RemoteRuntime):
497
497
  if brokers:
498
498
  brokers = brokers.split(",")
499
499
  topic, brokers = parse_kafka_url(stream.path, brokers)
500
+ trigger_args["max_workers"] = trigger_args.get(
501
+ "max_workers", max_workers_default
502
+ )
500
503
  trigger = KafkaTrigger(
501
504
  brokers=brokers,
502
505
  topics=[topic],
@@ -507,6 +510,10 @@ class ServingRuntime(RemoteRuntime):
507
510
  else:
508
511
  # V3IO doesn't allow hyphens in object names
509
512
  group = group.replace("-", "_")
513
+ # Deal with unconventional parameter naming in V3IOStreamTrigger specifically
514
+ trigger_args["maxWorkers"] = trigger_args.get(
515
+ "maxWorkers", max_workers_default
516
+ )
510
517
  child_function.function_object.add_v3io_stream_trigger(
511
518
  stream.path, group=group, shards=stream.shards, **trigger_args
512
519
  )
mlrun/serving/routers.py CHANGED
@@ -13,9 +13,11 @@
13
13
  # limitations under the License.
14
14
 
15
15
  import concurrent
16
+ import concurrent.futures
16
17
  import copy
17
18
  import json
18
19
  import traceback
20
+ import typing
19
21
  from enum import Enum
20
22
  from io import BytesIO
21
23
  from typing import Dict, List, Union
@@ -209,16 +211,6 @@ class ModelRouter(BaseModelRouter):
209
211
  return event
210
212
 
211
213
 
212
- class ExecutorTypes:
213
- # TODO: Remove in 1.5.0.
214
- thread = "thread"
215
- process = "process"
216
-
217
- @staticmethod
218
- def all():
219
- return [ExecutorTypes.thread, ExecutorTypes.process]
220
-
221
-
222
214
  class ParallelRunnerModes(str, Enum):
223
215
  """Supported parallel running modes for VotingEnsemble"""
224
216
 
@@ -313,17 +305,12 @@ class ParallelRun(BaseModelRouter):
313
305
  )
314
306
  self.name = name or "ParallelRun"
315
307
  self.extend_event = extend_event
316
- if isinstance(executor_type, ExecutorTypes):
317
- executor_type = str(executor_type)
318
- logger.warn(
319
- "ExecutorTypes is deprecated and will be removed in 1.5.0, use ParallelRunnerModes instead",
320
- # TODO: In 1.5.0 to remove ExecutorTypes
321
- FutureWarning,
322
- )
323
308
  self.executor_type = ParallelRunnerModes(executor_type)
324
- self._pool: Union[
325
- concurrent.futures.ProcessPoolExecutor,
326
- concurrent.futures.ThreadPoolExecutor,
309
+ self._pool: typing.Optional[
310
+ Union[
311
+ concurrent.futures.ProcessPoolExecutor,
312
+ concurrent.futures.ThreadPoolExecutor,
313
+ ]
327
314
  ] = None
328
315
 
329
316
  def _apply_logic(self, results: dict, event=None):
mlrun/serving/server.py CHANGED
@@ -40,8 +40,6 @@ from .states import RootFlowStep, RouterStep, get_function, graph_root_setter
40
40
  from .utils import (
41
41
  event_id_key,
42
42
  event_path_key,
43
- legacy_event_id_key,
44
- legacy_event_path_key,
45
43
  )
46
44
 
47
45
 
@@ -257,18 +255,10 @@ class GraphServer(ModelObj):
257
255
  context = context or server_context
258
256
  event.content_type = event.content_type or self.default_content_type or ""
259
257
  if event.headers:
260
- # TODO: remove old event id and path keys in 1.6.0
261
- if event_id_key in event.headers or legacy_event_id_key in event.headers:
262
- event.id = event.headers.get(event_id_key) or event.headers.get(
263
- legacy_event_id_key
264
- )
265
- if (
266
- event_path_key in event.headers
267
- or legacy_event_path_key in event.headers
268
- ):
269
- event.path = event.headers.get(event_path_key) or event.headers.get(
270
- legacy_event_path_key
271
- )
258
+ if event_id_key in event.headers:
259
+ event.id = event.headers.get(event_id_key)
260
+ if event_path_key in event.headers:
261
+ event.path = event.headers.get(event_path_key)
272
262
 
273
263
  if isinstance(event.body, (str, bytes)) and (
274
264
  not event.content_type or event.content_type in ["json", "application/json"]
mlrun/serving/utils.py CHANGED
@@ -21,9 +21,6 @@ from mlrun.utils import get_in, update_in
21
21
  # more info https://github.com/benoitc/gunicorn/issues/2799, this comment can be removed once old keys are removed
22
22
  event_id_key = "MLRUN-EVENT-ID"
23
23
  event_path_key = "MLRUN-EVENT-PATH"
24
- # TODO: remove these keys in 1.6.0
25
- legacy_event_id_key = "MLRUN_EVENT_ID"
26
- legacy_event_path_key = "MLRUN_EVENT_PATH"
27
24
 
28
25
 
29
26
  def _extract_input_data(input_path, body):
mlrun/utils/helpers.py CHANGED
@@ -394,8 +394,11 @@ def get_pretty_types_names(types):
394
394
  return types[0].__name__
395
395
 
396
396
 
397
- def now_date():
398
- return datetime.now(timezone.utc)
397
+ def now_date(tz: timezone = timezone.utc) -> datetime:
398
+ return datetime.now(tz=tz)
399
+
400
+
401
+ datetime_now = now_date
399
402
 
400
403
 
401
404
  def to_date_str(d):
@@ -1600,3 +1603,8 @@ def to_parquet(df, *args, **kwargs):
1600
1603
  if "version" not in kwargs:
1601
1604
  kwargs["version"] = "2.4"
1602
1605
  df.to_parquet(*args, **kwargs)
1606
+
1607
+
1608
+ def is_ecr_url(registry: str) -> bool:
1609
+ # example URL: <aws_account_id>.dkr.ecr.<region>.amazonaws.com
1610
+ return ".ecr." in registry and ".amazonaws.com" in registry
mlrun/utils/logger.py CHANGED
@@ -131,10 +131,10 @@ class Logger(object):
131
131
  def level(self):
132
132
  return self._logger.level
133
133
 
134
- def set_logger_level(self, level: Union[str, int]):
134
+ def set_logger_level(self, level: Union[str, int]) -> None:
135
135
  self._logger.setLevel(level)
136
136
 
137
- def replace_handler_stream(self, handler_name: str, file: IO[str]):
137
+ def replace_handler_stream(self, handler_name: str, file: IO[str]) -> None:
138
138
  for handler in self._logger.handlers:
139
139
  if handler.name == handler_name:
140
140
  handler.stream = file
@@ -193,11 +193,11 @@ def _create_formatter_instance(formatter_kind: FormatterKinds) -> logging.Format
193
193
 
194
194
 
195
195
  def create_logger(
196
- level: str = None,
196
+ level: Optional[str] = None,
197
197
  formatter_kind: str = FormatterKinds.HUMAN.name,
198
198
  name: str = "mlrun",
199
- stream=stdout,
200
- ):
199
+ stream: IO[str] = stdout,
200
+ ) -> Logger:
201
201
  level = level or config.log_level or "info"
202
202
 
203
203
  level = logging.getLevelName(level.upper())
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "e57839f89b398040dec3c6f581120e69f9f666ed",
3
- "version": "1.6.0-rc20"
2
+ "git_commit": "ae3fdb8b9ce822eafb3a810f2a44faf8a5d810ca",
3
+ "version": "1.6.0-rc22"
4
4
  }
@@ -1,11 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mlrun
3
- Version: 1.6.0rc20
3
+ Version: 1.6.0rc22
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
7
7
  Author-email: yaronh@iguazio.com
8
8
  License: Apache License 2.0
9
+ Keywords: mlrun,mlops,data-science,machine-learning,experiment-tracking
9
10
  Classifier: Development Status :: 4 - Beta
10
11
  Classifier: Intended Audience :: Developers
11
12
  Classifier: License :: OSI Approved :: Apache Software License
@@ -18,6 +19,7 @@ Classifier: Programming Language :: Python :: 3.9
18
19
  Classifier: Programming Language :: Python
19
20
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
21
  Classifier: Topic :: Software Development :: Libraries
22
+ Requires-Python: >=3.9, <3.12
21
23
  Description-Content-Type: text/markdown
22
24
  License-File: LICENSE
23
25
  Requires-Dist: urllib3 <1.27,>=1.26.9
@@ -38,12 +40,12 @@ Requires-Dist: tabulate ~=0.8.6
38
40
  Requires-Dist: v3io ~=0.5.21
39
41
  Requires-Dist: pydantic >=1.10.8,~=1.10
40
42
  Requires-Dist: mergedeep ~=1.3
41
- Requires-Dist: v3io-frames ~=0.10.7
43
+ Requires-Dist: v3io-frames ~=0.10.10
42
44
  Requires-Dist: semver ~=3.0
43
45
  Requires-Dist: dependency-injector ~=4.41
44
46
  Requires-Dist: fsspec ==2023.9.2
45
47
  Requires-Dist: v3iofs ~=0.1.17
46
- Requires-Dist: storey ~=1.6.15
48
+ Requires-Dist: storey ~=1.6.16
47
49
  Requires-Dist: inflection ~=0.5.0
48
50
  Requires-Dist: python-dotenv ~=0.17.0
49
51
  Requires-Dist: setuptools ~=68.2
@@ -1,23 +1,23 @@
1
1
  mlrun/__init__.py,sha256=o9dHUfVFADfsi6GnOPLr2OkfkHdPvOnA7rkoECen0-I,7248
2
2
  mlrun/__main__.py,sha256=zd-o0SkFH69HhIWKhqXnNURsrtpIcOJYYq50JfAxW7k,49234
3
- mlrun/config.py,sha256=jTvRZaYmEZhzkbUgcUaKbIpz-eLXUhWzaAu3yaTdmyg,61553
4
- mlrun/errors.py,sha256=rnfbLnO0yMZ4gMeo3uv7YOgHbU0dng1H2utVFnXepAo,7060
5
- mlrun/execution.py,sha256=5CulAZP0jK8SfIfDHC6rvI7UfMcgekFDkXjFifJ3EgI,40556
3
+ mlrun/config.py,sha256=t2gfSq-ZOXOUPf0Bw9FQ9yn667Usbo5qyfILb2Ie06Y,61559
4
+ mlrun/errors.py,sha256=YdUtkN3qJ6yrseNygmKxmSWOfQ_RdKBhRxwwyMlTQCM,7106
5
+ mlrun/execution.py,sha256=H9ZiWKfv15IihbWPmKymQMaKMLA2LhloxZiPSIy6k5k,40796
6
6
  mlrun/features.py,sha256=UQQ2uh5Xh9XsMGiYBqh3bKgDhOHANjv1gQgWyId9qQE,15624
7
7
  mlrun/k8s_utils.py,sha256=ZjKzu1ixBJ484L1cOgmhaTQNwUILCcbTyCeX95t-HzM,5386
8
8
  mlrun/kfpops.py,sha256=5kdUd9L1QYZIw3wizuTwmvXOmgut3uu0iIhN9I-vYNA,30206
9
- mlrun/lists.py,sha256=lMbcVvtS5MLI40JPtT5ithTojX8xUZx4RkZX0-L9zUE,8390
10
- mlrun/model.py,sha256=OB-SmorCRO5HRFnOTCr2jSZdgyO7BZMP6ecUgbWPvtQ,63213
9
+ mlrun/lists.py,sha256=JMc4Ch4wQxD_B9zbrE3JZwXD8cCYWLqHb1FQXWoaGzM,8310
10
+ mlrun/model.py,sha256=ExATItaxkcFSd6I4G4INUsVardbaza0yJswInjr2-WM,63405
11
11
  mlrun/render.py,sha256=a_s-kzQ35bJg7e7cBxk3MCnoIK4qvDS2dGO8RzHgI1c,13016
12
12
  mlrun/run.py,sha256=xrPu7PDdFwwbCtrV01GQNGKGhUZY0EG3tdGEWC-8-Co,42414
13
13
  mlrun/secrets.py,sha256=m7jM8fdjGLR-j9Vx-08eNmtOmlxFx9mTUBqBWtMSVQo,7782
14
14
  mlrun/api/schemas/__init__.py,sha256=ggWbnqhp7By5HNYYfRsZ4D4EdVvjLuz4qfNfR3Kq6M4,14219
15
15
  mlrun/artifacts/__init__.py,sha256=LxEWcMYPawJYvNOl6H2_UvrxdLTNYfKeZcMEKFZnGgA,1187
16
- mlrun/artifacts/base.py,sha256=Aii9fINnuJxCHbo-jrXPlwKEzb383SlPFw17pAFzSkw,34285
17
- mlrun/artifacts/dataset.py,sha256=BnVrDwXOO-zwMJCRxi7aJJnrF3HKxRsTncIeX1IU4ZI,21357
18
- mlrun/artifacts/manager.py,sha256=zsie9ZxTIwwA9BUfgiQRAzYMAjFV7aDQ4A6lgOXvn2c,12823
19
- mlrun/artifacts/model.py,sha256=UocVUnhC3do4vaCrc3Fn2RpT0UpCRfr23j-2853aUF4,24982
20
- mlrun/artifacts/plots.py,sha256=bbqRjPau72UVonIzf3jFmm9K56Nd-XWhAufjHKOdpK8,15717
16
+ mlrun/artifacts/base.py,sha256=lr3v5VFEFQE82iOprVVdePCjMSGUuLbnAfd1Kpmmay4,34285
17
+ mlrun/artifacts/dataset.py,sha256=b-3zCi7oOz1i-1lLESu3z_vH53ppNqUNTrBj4nfF54Q,21721
18
+ mlrun/artifacts/manager.py,sha256=wtFo-HyVcL5v7j4bGscuVC6BOj4V_MJqSTg51b15DL0,13102
19
+ mlrun/artifacts/model.py,sha256=afncOUhAjnVPPd80ZgMh3LKpqSRqxOg498PKPm4h0Mw,24982
20
+ mlrun/artifacts/plots.py,sha256=dda9_LL6_szzXbP_vpuN-pSL0Dc1q3JbvUlUBrlQ1dw,15717
21
21
  mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
22
22
  mlrun/common/constants.py,sha256=NpBgZV-ReSvPeMKPFp3DKzNWgiVebjGZrZ19pG_ZfRE,660
23
23
  mlrun/common/helpers.py,sha256=FqlMfRiZeGS6HZCOHaAJae2wDL1aRoijFBS5aZoPiIM,1108
@@ -62,34 +62,34 @@ mlrun/data_types/__init__.py,sha256=EkxfkFoHb91zz3Aymq-KZfCHlPMzEc3bBqgzPUwmHWY,
62
62
  mlrun/data_types/data_types.py,sha256=qgRIdlSl9X-rAnwOW-F0hwPbDKOZI05JlSzV1O8ReaU,4647
63
63
  mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,6134
64
64
  mlrun/data_types/spark.py,sha256=qKQ2TIAPQWDgmIOmpyV5_uuyUX3AnXWSq6GPpVjVIek,9457
65
- mlrun/data_types/to_pandas.py,sha256=HWs6Tvl3hBHnJZRwZYT9llt-faLLFpzLZG3vHBP6ywk,9994
65
+ mlrun/data_types/to_pandas.py,sha256=uq7y1svEzaDaPg92YP3p3k3BDI48XWZ2bDdH6aJSvso,9991
66
66
  mlrun/datastore/__init__.py,sha256=bsRzu39UOocQAAl_nOKCbhxrZhWUEXrAc8WV3zs0VyI,4118
67
- mlrun/datastore/azure_blob.py,sha256=KE-Ay7xBHa0_SEELiYbrP8HDJyuIWaChZ8Kz2XxfARA,8878
68
- mlrun/datastore/base.py,sha256=vqM3Ko5c2fTomxrvOqN-SoxFIjf4pf7g9nCqO56x4ec,24969
67
+ mlrun/datastore/azure_blob.py,sha256=zYHUN5WDvWje4f06GzLDlwJ__ePnjsckgSYbYJt8NF4,8728
68
+ mlrun/datastore/base.py,sha256=dNpBct2pcLtD2cqSCNCY3tnN-9qyyVeHoulzlcQiQlE,25614
69
69
  mlrun/datastore/datastore.py,sha256=FWDVQsWlVDbGmHp-yAJbZLE2qi_jtLzhoe8qLPiATNg,8871
70
- mlrun/datastore/datastore_profile.py,sha256=B0qAxivAUWE_DsRoTlaNy63zKW-iSCtKPGCqzOXiz_Q,13980
71
- mlrun/datastore/dbfs_store.py,sha256=ECbkT5pvKVF7gUnMJe2Dx16gi95fV4zspKI67FWX6MY,6642
72
- mlrun/datastore/filestore.py,sha256=o4ex777XyxyV1CQBP7M2JyyssCVVAc4H3JrvNC9eryM,3791
73
- mlrun/datastore/google_cloud_storage.py,sha256=t8_TaRo2TNQWNTtMi32VCuYKhUhxSTeFU025Q1VNccQ,6002
70
+ mlrun/datastore/datastore_profile.py,sha256=vBQASu7m6KEkTNZw0XHOOfnpavOYog7Ayldb4NBXdgQ,13992
71
+ mlrun/datastore/dbfs_store.py,sha256=5IkxnFQXkW0fdx-ca5jjQnUdTsTfNdJzMvV31ZpDNrM,6634
72
+ mlrun/datastore/filestore.py,sha256=cI_YvQqY5J3kEvdyPelfWofxKfBitoNHJvABBkpCGRc,3788
73
+ mlrun/datastore/google_cloud_storage.py,sha256=lnUP48l8OlxR5lF2Xk8BuVuiL0r7q7TdZ_sK1I63ULQ,6038
74
74
  mlrun/datastore/helpers.py,sha256=-bKveE9rteLd0hJd6OSMuMbfz09W_OXyu1G5O2ihZjs,622
75
75
  mlrun/datastore/inmem.py,sha256=6PAltUk7uyYlDgnsaJPOkg_P98iku1ys2e2wpAmPRkc,2779
76
- mlrun/datastore/redis.py,sha256=UaQyMkNbmXZ0B8h-d_u6G88L2hfiEX6o9hBx60Tspj8,5515
77
- mlrun/datastore/s3.py,sha256=YgVzpiOhCUfIIbUsJvMs0aZBzu1Jm8lSL5XiCgyfQIY,8065
78
- mlrun/datastore/sources.py,sha256=5LT0w8iVhE9RD5Y0vS2dGjrowhv3EgizaV9rv7Tw1go,40723
76
+ mlrun/datastore/redis.py,sha256=DDA1FsixfnzNwjVUU9MgVCKFo3X3tYvPDcREKyy9zS4,5517
77
+ mlrun/datastore/s3.py,sha256=BCyVDznEsmU1M1HtRROdLo4HkLOy4fjEmgpNrTpsoW0,8030
78
+ mlrun/datastore/sources.py,sha256=GnXJ2605HhkfrfvimQ4BY29SPxzdb7pZvZysmcVDuhM,40916
79
79
  mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
80
80
  mlrun/datastore/store_resources.py,sha256=dfMdFy2urilECtlwLJr5CSG12MA645b-NPYDnbr5s1A,6839
81
- mlrun/datastore/targets.py,sha256=NUR4lD4rdL36YUaR62Tqp_650P1hucvivuZzyegAti4,70836
81
+ mlrun/datastore/targets.py,sha256=tTR1o41hm8yMUvPyGkzC_9pENbSDloBdFmmiw0cVnsM,70381
82
82
  mlrun/datastore/utils.py,sha256=8vXENxeJjyYvJtDhQRQJuMwA677MRHD25W2QT06qVSI,6771
83
- mlrun/datastore/v3io.py,sha256=nKWs7SKjoGpPzblarKURA1ePlQ_j5VJ8vwkE7rLULbw,8390
83
+ mlrun/datastore/v3io.py,sha256=PJVPMUaIDopGKrmdp3vA7fRkoEoTnn-LNDduhDMZf5o,8303
84
84
  mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
85
85
  mlrun/datastore/wasbfs/fs.py,sha256=MnSj7Q4OKA2L55ihCmUnj2t3GA3B77oLMdAw-yxvN9w,6151
86
86
  mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
87
87
  mlrun/db/base.py,sha256=k6p59-1dtYc41gyyXSNqmwIP9IeJBWJoATRZj75fXK0,17325
88
88
  mlrun/db/factory.py,sha256=wTEKHEmdDkylM6IkTYvmEYVF8gn2HdjLoLoWICCyatI,2403
89
- mlrun/db/httpdb.py,sha256=xh324FpXUuwQATdYR35kViRHUjPOmj_A2G2pb7AGNmg,152706
89
+ mlrun/db/httpdb.py,sha256=icBvbIYmn2D9pesxNBUStuDAej9DrQNJ5dQljTkN5eo,156182
90
90
  mlrun/db/nopdb.py,sha256=7opGVsojb_gpVMw7bnIK2Y-e9hKd-ZDc8D_zKGzbFFw,14219
91
91
  mlrun/feature_store/__init__.py,sha256=n1F5m1svFW2chbE2dJdWzZJJiYS4E-y8PQsG9Q-F0lU,1584
92
- mlrun/feature_store/api.py,sha256=-cMIA0XwhhiKwRxXoLQNp90OPIVGRjCNMiSjKkbZpAw,49331
92
+ mlrun/feature_store/api.py,sha256=6aVoAoT0GLKbP-zjbDspD6lgKbawqG0aJZSDAgtQu2o,49292
93
93
  mlrun/feature_store/common.py,sha256=jA7Flrv7iJx2Ug1-4BsOxPCQpVKeaPDcJPupBhu8MgI,12860
94
94
  mlrun/feature_store/feature_set.py,sha256=94goubHUgVaUH3_QN-QQxNoOAjOpNuZtZNIS0ahhNSc,50433
95
95
  mlrun/feature_store/feature_vector.py,sha256=uNcGjx5OsdVX_ws4AVKs9EDNjJD3gq6m9Qtqxt5xK_k,36290
@@ -187,23 +187,23 @@ mlrun/frameworks/xgboost/mlrun_interface.py,sha256=QcP_mTKBjxvRyWcNnju0BlvXBDOqN
187
187
  mlrun/frameworks/xgboost/model_handler.py,sha256=XV8xndGhQsPkOX9djqiNVYFB0xiZPujhC0m4DUOU2zI,11617
188
188
  mlrun/frameworks/xgboost/utils.py,sha256=5zLzHoeI3n2FuA_rdGzi404QCTLfQx1TYEyUWhZogs8,1069
189
189
  mlrun/launcher/__init__.py,sha256=pZgS6ZN126aJme4z5spCX-RmdchShxMnQeCPya8AsQI,577
190
- mlrun/launcher/base.py,sha256=vNi5aPHu2g8ycpOxPXOpcVpYVV9OZP7FJFP96fJjZV4,16288
190
+ mlrun/launcher/base.py,sha256=_5S7zR4gpMiBvsau7RgmzUzFRZCFQiLBhgK72HjxakI,16265
191
191
  mlrun/launcher/client.py,sha256=pnHqTSGl3FnwzOh7FicrGl0JOWZ3naKjay3MOkbIzLI,6054
192
192
  mlrun/launcher/factory.py,sha256=tk6foFWox7f_xaeTgkWTx9ht_5fv0XzLDR8ucdb8oTE,2344
193
193
  mlrun/launcher/local.py,sha256=H0tN2Ex_mGCUtCyCSdk57mdXtFvl9eWDTVDwldv2SXQ,10927
194
194
  mlrun/launcher/remote.py,sha256=e7orva_ozrtmvEE-QihoFi8MKNCAHxzeUNQpqwQbEoQ,7007
195
195
  mlrun/model_monitoring/__init__.py,sha256=XaYyvWsIXpjJQ2gCPj8tFvfSbRSEEqgDtNz4tCE5H4g,915
196
- mlrun/model_monitoring/api.py,sha256=ab1rS8ahe0NdOcqNXDzIhHtUK2rX5qhM2UtRp6o-XE0,36744
196
+ mlrun/model_monitoring/api.py,sha256=8oXFczdDPaIBwZfLgTMyH9IveBZdntdn1QqtfnlE7q8,35222
197
197
  mlrun/model_monitoring/application.py,sha256=uf13cR36_IKsc8hNkukx4-nrSjR6kXXsubgUC05XbOw,11925
198
- mlrun/model_monitoring/batch.py,sha256=gtKSgg0PlqGKTu8xM9gXYCb3_upgj-QmRnC-VFiyTSg,43475
199
- mlrun/model_monitoring/controller.py,sha256=Z7_SrkQt3PuLoPZiJf6NHyIbPeK94YxpgB6NoNC3WgA,26652
200
- mlrun/model_monitoring/controller_handler.py,sha256=Yk8urHYKSU_RUhO0B375VO5YWd41yvPW_SMFpO-C8vg,1095
198
+ mlrun/model_monitoring/batch.py,sha256=LLBxpTGJmR5QT2Si1RObP7j4-W6oUFv8y2oIv7n9hsU,43530
199
+ mlrun/model_monitoring/controller.py,sha256=_p3uxvMlLvkqONRqXTf9qBpmhuETMZ67docdhrfDvYw,27665
200
+ mlrun/model_monitoring/controller_handler.py,sha256=kG3sTjhKdsd9QcHkUlYcvw08yPsVQs9FyFdcKP9iaCo,977
201
201
  mlrun/model_monitoring/evidently_application.py,sha256=o9PsDsjyRfcbuC1X1gb2ww5nzWCsR_KheabtpxKZ5yY,4824
202
202
  mlrun/model_monitoring/features_drift_table.py,sha256=2r51W4xQ8gNq3PXt73IfsYu4l4mjwD-dLfRVAvKplTE,24209
203
- mlrun/model_monitoring/helpers.py,sha256=KvHPx28biu5jNqfOutzX82AI9Y7Lx9cNMpD2L2uS_hU,5564
203
+ mlrun/model_monitoring/helpers.py,sha256=eouT8O5OxnKC62J45dn3BYFZ6-GvcWwL9XN33hyWpWs,6460
204
204
  mlrun/model_monitoring/model_endpoint.py,sha256=BBtxdY5ciormI_al4zshmIp0GN7hGhOCn-hLgpCXek0,3938
205
205
  mlrun/model_monitoring/prometheus.py,sha256=Z0UWmhQ-dpGGH31gCiGdfmhfj-RFRf1Tu1bYVe-k4jk,7605
206
- mlrun/model_monitoring/stream_processing.py,sha256=fF_V77a-j2hUbbr-ruRt4u0M-nrwLlZisU4ZcTfAWIY,48973
206
+ mlrun/model_monitoring/stream_processing.py,sha256=B2thQDTJN1PEebsYf4cQmsRhap5w7fRNu-j9VyrQ22Q,48834
207
207
  mlrun/model_monitoring/tracking_policy.py,sha256=Q6_p4y1ZcRHqs24c_1_4m9E1gYnaOm6pLCNGT22dWKM,5221
208
208
  mlrun/model_monitoring/writer.py,sha256=IWPzPenoAkfIxlvn0IdcdB19Nxqmg4mjbo3-RnYWw9A,8669
209
209
  mlrun/model_monitoring/stores/__init__.py,sha256=adU_G07jkD3JUT8__d0jAxs9nNomL7igKmd6uVM9L50,4525
@@ -235,27 +235,27 @@ mlrun/platforms/__init__.py,sha256=ArWn_iZiEE6qz7hvY_1RqMkFnHGuKjP3k5xYKnfKA58,2
235
235
  mlrun/platforms/iguazio.py,sha256=z7TtOVo8lSxvWw8IXerrUHDJmClUD_L_B6pDuLMPxFw,21780
236
236
  mlrun/platforms/other.py,sha256=z4pWqxXkVVuMLk-MbNb0Y_ZR5pmIsUm0R8vHnqpEnew,11852
237
237
  mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
238
- mlrun/projects/operations.py,sha256=Qn7V-ixdUDD_u21U1IwshKhAe6fTbXGruU3Ekx5-8ls,18744
238
+ mlrun/projects/operations.py,sha256=Nb9f2p3rlO4xlzACkzrsYajlagST0g-IBT2QK0eD1Jg,18745
239
239
  mlrun/projects/pipelines.py,sha256=aEDlBEcMRl5Ggc82uCQic-Ua-Wem78cRXtSsC40_x4Q,39564
240
- mlrun/projects/project.py,sha256=wxKa4bsd8siPbXHUqq36NLmczlY3z0lJ2aofc-P0Dpc,148472
240
+ mlrun/projects/project.py,sha256=dkZ1fw65m4P1KM0GDUcwlu3HF3vugj-e_E46C8M4pr0,148783
241
241
  mlrun/runtimes/__init__.py,sha256=f5cdEg4raKNXQawJE-AuWzK6AqIsLfDODREeMnI2Ies,7062
242
- mlrun/runtimes/base.py,sha256=CfI8-IVCAZGWVwqr_0IsgwB4WB8nYmWhNyEUwfLrMwU,35521
243
- mlrun/runtimes/constants.py,sha256=6K0VzLuc8Qq5wprdIG5kzmNMgaK2iWU3PPGyJw4vwLE,9272
242
+ mlrun/runtimes/base.py,sha256=saYKzFVh3phfA3ARHinla-JR8MJq9SBnGnj9yU66XwU,35699
243
+ mlrun/runtimes/constants.py,sha256=tB7nIlHob3yF0K9Uf9BUZ8yxjZNSzlzrd3K32K_vV7w,9550
244
244
  mlrun/runtimes/daskjob.py,sha256=vkTnLg5LvjPFawt8V7HcdyZPqKjsdY4_3jODCZOkqSg,19098
245
245
  mlrun/runtimes/funcdoc.py,sha256=FHwnLfFzoD6yGlsAJXAl_3VTtudgg4fTrsw_XqLOkC0,10508
246
246
  mlrun/runtimes/function.py,sha256=kmix8OXGWtNnN4bmdgBaRWv50kEJ86gmJUSTG5J_RqI,47557
247
247
  mlrun/runtimes/function_reference.py,sha256=SJ0J-4ww0FQdijmdnUwGUKhMb-h5wtzqCPItTWKIL40,4911
248
248
  mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
249
- mlrun/runtimes/kubejob.py,sha256=BiSnLOvcm_YvpayADtxDtqyUmuYSwdAlVo6TlHfoqus,12386
250
- mlrun/runtimes/local.py,sha256=KpltXdjBsIr6iyZRjSFlkhm79IpDVkjzSvMQs8YcO_8,21190
249
+ mlrun/runtimes/kubejob.py,sha256=IrrREFUpSHvkxoV3GBhMMCp-L_HHOTdxEodYQyeeKLo,12387
250
+ mlrun/runtimes/local.py,sha256=OAGkcShFlxYXSPnJSAWe0MFxwrVdAvW7VP_Y-bycXQs,21767
251
251
  mlrun/runtimes/nuclio.py,sha256=hwk4dUaZefI-Qbb4s289vQpt1h0nAucxf6eINzVI-d8,2908
252
252
  mlrun/runtimes/pod.py,sha256=73gXYggAdOW4uqRHQPVZy4PnvlS9t3x7qrygxXW2vl0,56778
253
253
  mlrun/runtimes/remotesparkjob.py,sha256=W7WqlPbyqE6FjOZ2EFeOzlL1jLGWAWe61jOH0Umy3F4,7334
254
- mlrun/runtimes/serving.py,sha256=8qiJVWh_2_GetuPWhF66WiL8rSy5Fb2Xf-yCcimXkR4,30423
254
+ mlrun/runtimes/serving.py,sha256=EGMANEL8ioOwDcVM0IL6TWiI-o5aMabx-AWwdD6iD5s,30772
255
255
  mlrun/runtimes/utils.py,sha256=26NDFnjoBg-2xvc-cY9BaHtJPpPtiIDzwM3-nxOXYT0,15957
256
256
  mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
257
257
  mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=lYItecKYdWkvmuE0gCLqx2OkBfC6JFp4PE3dW6WXHsI,2249
258
- mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=PG4S3R61dnoxUf6HZSe472oMwkHUx7I_Z-P_TY_P4WM,12900
258
+ mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=aKEnzhYu6fDw5oZVte0oxS-oj0qXfKDpJ0rLSc8h7go,12761
259
259
  mlrun/runtimes/databricks_job/databricks_wrapper.py,sha256=-kzz5b3YBit6sGWojjREW_aHHRTx72zzTbxWGxvUplE,8679
260
260
  mlrun/runtimes/mpijob/__init__.py,sha256=jZf2uPBv6IB18Jj-dGSQ9NU5_xxni7XS4dnDZGwESFE,1583
261
261
  mlrun/runtimes/mpijob/abstract.py,sha256=KXPQKUPRz6Ttu7OMMfa9493p2OhueEFZtKkn-WgNebE,9178
@@ -266,11 +266,11 @@ mlrun/runtimes/sparkjob/spark3job.py,sha256=UN_EFDlSeq4Rn35IC-8O-7LvMsiazCFbJFka
266
266
  mlrun/serving/__init__.py,sha256=_6HRAOuS2Ehjo3vwx5h1aI_-JppxEAsl4VfEERAbGFE,1078
267
267
  mlrun/serving/merger.py,sha256=PXLn3A21FiLteJHaDSLm5xKNT-80eTTjfHUJnBX1gKY,6116
268
268
  mlrun/serving/remote.py,sha256=XtCgEY-azxcP0VUG1TupZXQ_dttPkAKIAtszW-GfGpQ,18038
269
- mlrun/serving/routers.py,sha256=jIZIUsWaktwwzD6--02Itlgb_CCCTxi620S-jw63WhM,55310
270
- mlrun/serving/server.py,sha256=-R_XP1NW2vG0V7F3nlPRGW0tobpL5tgZFTwcEhIZFbo,21764
269
+ mlrun/serving/routers.py,sha256=tZcqnjc4OeSdFnYCg2LaKcXtquMGU1QxyVT1dL1veWk,54872
270
+ mlrun/serving/server.py,sha256=8iLMgRm-W61-_mTueQ0q2vt6blpnpl5-aTQa6dQ6zEA,21357
271
271
  mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
272
272
  mlrun/serving/states.py,sha256=LORqEyNR6Rxq-rH0VfVvJ_aff3ws_KoT83UqXNccjyY,54821
273
- mlrun/serving/utils.py,sha256=u48DkqgbyGAbB8IJpiNKbOky6snt6KERSuBoYJnF_0w,3901
273
+ mlrun/serving/utils.py,sha256=PbXvmkqUAAE0jAfnsUwTOHEQsnhMpmuREv_yB21hvv4,3784
274
274
  mlrun/serving/v1_serving.py,sha256=5BVvsvjG4zsq3LMnYp0ZE8qFs-qcfQSD3SOSziEYQqQ,11813
275
275
  mlrun/serving/v2_serving.py,sha256=fAMA52lBvpLFpUa8LKHjRAwBZp_sR0wUmmtrN1ChJC4,21823
276
276
  mlrun/track/__init__.py,sha256=LWRUHJt8JyFW17FyNPOVyWd-NXTf1iptzsK9KFj5fuY,765
@@ -284,9 +284,9 @@ mlrun/utils/azure_vault.py,sha256=IbPAZh-7mp0j4PcCy1L079LuEA6ENrkWhKZvkD4lcTY,34
284
284
  mlrun/utils/clones.py,sha256=QG2ka65-ysfrOaoziudEjJqGgAxJvFKZOXkiD9WZGN4,7386
285
285
  mlrun/utils/condition_evaluator.py,sha256=KFZC-apM7RU5TIlRszAzMFc0NqPj3W1rgP0Zv17Ud-A,1918
286
286
  mlrun/utils/db.py,sha256=fp9p2_z7XW3DhsceJEObWKh-e5zKjPiCM55kSGNkZD8,1658
287
- mlrun/utils/helpers.py,sha256=cfPlZ8nnXBKBaqXfSwq4rHCtv-_K16E6VVmLQpkMcG4,52490
287
+ mlrun/utils/helpers.py,sha256=CrEO468TB8Z_qe_Eri1aYD6SjXRmHwo_aCq8i6v26cU,52720
288
288
  mlrun/utils/http.py,sha256=_3pJPuDPz7M9pU4uRN-NPUmCyaANCQsAWAIrlVLZPiY,8733
289
- mlrun/utils/logger.py,sha256=2VQHgMPRWsVvKO0QqPPm84UEgc9T1BIwzknSHyOSQZQ,7048
289
+ mlrun/utils/logger.py,sha256=Ik_4_YWXik0kv--DVquGu2-sYFGUiOi2tEY7u43-0H0,7095
290
290
  mlrun/utils/regex.py,sha256=V0kaw1-zuehkN20g_Pq6SgkJTBLRdBqNkXOGN_2TJEw,4430
291
291
  mlrun/utils/singleton.py,sha256=UUTQiBTXyzmjeYzsvTUsSxqyLJHOtesqif9GNfZO9rc,883
292
292
  mlrun/utils/v3io_clients.py,sha256=HL7Hma-pxaQBXMKcEnWqGLCpFgykwnszlabzeOHC9-E,1319
@@ -301,11 +301,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=qrBmtECiRG6sZpCIVMg7RZc
301
301
  mlrun/utils/notifications/notification/slack.py,sha256=5JysqIpUYUZKXPSeeZtbl7qb2L9dj7p2NvnEBcEsZkA,3898
302
302
  mlrun/utils/notifications/notification/webhook.py,sha256=QHezCuN5uXkLcroAGxGrhGHaxAdUvkDLIsp27_Yrfd4,2390
303
303
  mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
304
- mlrun/utils/version/version.json,sha256=SwjLwUEks1d2R4gbOABv8h6r9uDf_bTQu-vdMUXjK6I,89
304
+ mlrun/utils/version/version.json,sha256=h9ice7FruCn5483hrO2-3pqChqHI8vQFkN-fk7S5wAc,89
305
305
  mlrun/utils/version/version.py,sha256=HMwseV8xjTQ__6T6yUWojx_z6yUj7Io7O4NcCCH_sz8,1970
306
- mlrun-1.6.0rc20.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
307
- mlrun-1.6.0rc20.dist-info/METADATA,sha256=ioxyzNJkli3mNcN7q8pOeM1f9dVJJanema7ne6fgD4I,18329
308
- mlrun-1.6.0rc20.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
309
- mlrun-1.6.0rc20.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
310
- mlrun-1.6.0rc20.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
311
- mlrun-1.6.0rc20.dist-info/RECORD,,
306
+ mlrun-1.6.0rc22.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
307
+ mlrun-1.6.0rc22.dist-info/METADATA,sha256=trPKiyZBSiN5PZhMepuu31M7QCHOBVrVPcH_YoJZLuk,18432
308
+ mlrun-1.6.0rc22.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
309
+ mlrun-1.6.0rc22.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
310
+ mlrun-1.6.0rc22.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
311
+ mlrun-1.6.0rc22.dist-info/RECORD,,