mlrun 1.8.0rc26__py3-none-any.whl → 1.8.0rc27__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.

mlrun/__main__.py CHANGED
@@ -772,10 +772,11 @@ def get(kind, name, selector, namespace, uid, project, tag, db, extra_args):
772
772
 
773
773
  runs = run_db.list_runs(uid=uid, project=project, labels=selector)
774
774
  df = runs.to_df()[
775
- ["name", "uid", "iter", "start", "state", "parameters", "results"]
775
+ ["name", "uid", "iter", "start", "end", "state", "parameters", "results"]
776
776
  ]
777
777
  # df['uid'] = df['uid'].apply(lambda x: f'..{x[-6:]}')
778
- df["start"] = df["start"].apply(time_str)
778
+ for time_column in ["start", "end"]:
779
+ df[time_column] = df[time_column].apply(time_str)
779
780
  df["parameters"] = df["parameters"].apply(dict_to_str)
780
781
  df["results"] = df["results"].apply(dict_to_str)
781
782
  print(tabulate(df, headers="keys"))
mlrun/artifacts/model.py CHANGED
@@ -30,6 +30,7 @@ from ..utils import StorePrefix, is_relative_path
30
30
  from .base import Artifact, ArtifactSpec, upload_extra_data
31
31
 
32
32
  model_spec_filename = "model_spec.yaml"
33
+ MODEL_OPTIONAL_SUFFIXES = [".tar.gz", ".pkl", ".bin", ".pickle"]
33
34
 
34
35
 
35
36
  class ModelArtifactSpec(ArtifactSpec):
@@ -426,7 +427,17 @@ def get_model(model_dir, suffix=""):
426
427
  model_file = ""
427
428
  model_spec = None
428
429
  extra_dataitems = {}
429
- suffix = suffix or ".pkl"
430
+ default_suffix = ".pkl"
431
+
432
+ alternative_suffix = next(
433
+ (
434
+ optional_suffix
435
+ for optional_suffix in MODEL_OPTIONAL_SUFFIXES
436
+ if model_dir.lower().endswith(optional_suffix)
437
+ ),
438
+ None,
439
+ )
440
+
430
441
  if hasattr(model_dir, "artifact_url"):
431
442
  model_dir = model_dir.artifact_url
432
443
 
@@ -440,15 +451,19 @@ def get_model(model_dir, suffix=""):
440
451
  target, model_spec.model_target_file or model_spec.model_file
441
452
  )
442
453
  extra_dataitems = _get_extra(target, model_spec.extra_data)
443
-
454
+ suffix = suffix or default_suffix
444
455
  elif model_dir.lower().endswith(".yaml"):
445
456
  model_spec = _load_model_spec(model_dir)
446
457
  model_file = _get_file_path(model_dir, model_spec.model_file)
447
458
  extra_dataitems = _get_extra(model_dir, model_spec.extra_data)
448
-
449
- elif model_dir.endswith(suffix):
459
+ suffix = suffix or default_suffix
460
+ elif suffix and model_dir.endswith(suffix):
461
+ model_file = model_dir
462
+ elif not suffix and alternative_suffix:
463
+ suffix = alternative_suffix
450
464
  model_file = model_dir
451
465
  else:
466
+ suffix = suffix or default_suffix
452
467
  dirobj = mlrun.datastore.store_manager.object(url=model_dir)
453
468
  model_dir_list = dirobj.listdir()
454
469
  if model_spec_filename in model_dir_list:
@@ -47,9 +47,9 @@ def parse_monitoring_stream_path(
47
47
  function_name is None
48
48
  or function_name == mm_constants.MonitoringFunctionNames.STREAM
49
49
  ):
50
- stream_uri += f"?topic=monitoring_stream_{project}"
50
+ stream_uri += f"?topic=monitoring_stream_{project}_v1"
51
51
  else:
52
- stream_uri += f"?topic=monitoring_stream_{project}_{function_name}"
52
+ stream_uri += f"?topic=monitoring_stream_{project}_{function_name}_v1"
53
53
 
54
54
  return stream_uri
55
55
 
@@ -146,7 +146,6 @@ class EventFieldType:
146
146
 
147
147
  class FeatureSetFeatures(MonitoringStrEnum):
148
148
  LATENCY = EventFieldType.LATENCY
149
- ERROR_COUNT = EventFieldType.ERROR_COUNT
150
149
  METRICS = EventFieldType.METRICS
151
150
 
152
151
  @classmethod
mlrun/config.py CHANGED
@@ -1304,7 +1304,7 @@ class Config:
1304
1304
  project=project,
1305
1305
  kind=kind
1306
1306
  if function_name is None
1307
- else f"{kind}-{function_name.lower()}",
1307
+ else f"{kind}-{function_name.lower()}-v1",
1308
1308
  )
1309
1309
  elif (
1310
1310
  kind == "stream"
@@ -1313,19 +1313,23 @@ class Config:
1313
1313
  ):
1314
1314
  return mlrun.mlconf.model_endpoint_monitoring.store_prefixes.user_space.format(
1315
1315
  project=project,
1316
- kind=kind,
1316
+ kind=f"{kind}-v1",
1317
1317
  )
1318
- else:
1319
- if (
1320
- function_name
1321
- == mlrun.common.schemas.model_monitoring.constants.MonitoringFunctionNames.APPLICATION_CONTROLLER
1322
- ):
1323
- kind = function_name
1318
+ elif (
1319
+ function_name
1320
+ == mlrun.common.schemas.model_monitoring.constants.MonitoringFunctionNames.APPLICATION_CONTROLLER
1321
+ and kind == "stream"
1322
+ ):
1324
1323
  return mlrun.mlconf.model_endpoint_monitoring.store_prefixes.default.format(
1325
1324
  project=project,
1326
- kind=kind,
1325
+ kind=f"{kind}-{function_name.lower()}-v1",
1327
1326
  )
1328
1327
 
1328
+ return mlrun.mlconf.model_endpoint_monitoring.store_prefixes.default.format(
1329
+ project=project,
1330
+ kind=kind,
1331
+ )
1332
+
1329
1333
  # Get the current offline path from the configuration
1330
1334
  file_path = mlrun.mlconf.model_endpoint_monitoring.offline_storage_path.format(
1331
1335
  project=project, kind=kind
mlrun/db/base.py CHANGED
@@ -108,6 +108,8 @@ class RunDBInterface(ABC):
108
108
  start_time_to: Optional[datetime.datetime] = None,
109
109
  last_update_time_from: Optional[datetime.datetime] = None,
110
110
  last_update_time_to: Optional[datetime.datetime] = None,
111
+ end_time_from: Optional[datetime.datetime] = None,
112
+ end_time_to: Optional[datetime.datetime] = None,
111
113
  partition_by: Union[mlrun.common.schemas.RunPartitionByField, str] = None,
112
114
  rows_per_partition: int = 1,
113
115
  partition_sort_by: Union[mlrun.common.schemas.SortField, str] = None,
mlrun/db/httpdb.py CHANGED
@@ -905,6 +905,8 @@ class HTTPRunDB(RunDBInterface):
905
905
  start_time_to: Optional[datetime] = None,
906
906
  last_update_time_from: Optional[datetime] = None,
907
907
  last_update_time_to: Optional[datetime] = None,
908
+ end_time_from: Optional[datetime] = None,
909
+ end_time_to: Optional[datetime] = None,
908
910
  partition_by: Optional[
909
911
  Union[mlrun.common.schemas.RunPartitionByField, str]
910
912
  ] = None,
@@ -951,6 +953,8 @@ class HTTPRunDB(RunDBInterface):
951
953
  :param last_update_time_from: Filter by run last update time in ``(last_update_time_from,
952
954
  last_update_time_to)``.
953
955
  :param last_update_time_to: Filter by run last update time in ``(last_update_time_from, last_update_time_to)``.
956
+ :param end_time_from: Filter by run end time in ``[end_time_from, end_time_to]``.
957
+ :param end_time_to: Filter by run end time in ``[end_time_from, end_time_to]``.
954
958
  :param partition_by: Field to group results by. When `partition_by` is specified, the `partition_sort_by`
955
959
  parameter must be provided as well.
956
960
  :param rows_per_partition: How many top rows (per sorting defined by `partition_sort_by` and `partition_order`)
@@ -976,6 +980,8 @@ class HTTPRunDB(RunDBInterface):
976
980
  start_time_to=start_time_to,
977
981
  last_update_time_from=last_update_time_from,
978
982
  last_update_time_to=last_update_time_to,
983
+ end_time_from=end_time_from,
984
+ end_time_to=end_time_to,
979
985
  partition_by=partition_by,
980
986
  rows_per_partition=rows_per_partition,
981
987
  partition_sort_by=partition_sort_by,
@@ -5226,6 +5232,8 @@ class HTTPRunDB(RunDBInterface):
5226
5232
  start_time_to: Optional[datetime] = None,
5227
5233
  last_update_time_from: Optional[datetime] = None,
5228
5234
  last_update_time_to: Optional[datetime] = None,
5235
+ end_time_from: Optional[datetime] = None,
5236
+ end_time_to: Optional[datetime] = None,
5229
5237
  partition_by: Optional[
5230
5238
  Union[mlrun.common.schemas.RunPartitionByField, str]
5231
5239
  ] = None,
@@ -5277,6 +5285,8 @@ class HTTPRunDB(RunDBInterface):
5277
5285
  and not start_time_to
5278
5286
  and not last_update_time_from
5279
5287
  and not last_update_time_to
5288
+ and not end_time_from
5289
+ and not end_time_to
5280
5290
  and not partition_by
5281
5291
  and not partition_sort_by
5282
5292
  and not iter
@@ -5301,6 +5311,8 @@ class HTTPRunDB(RunDBInterface):
5301
5311
  "start_time_to": datetime_to_iso(start_time_to),
5302
5312
  "last_update_time_from": datetime_to_iso(last_update_time_from),
5303
5313
  "last_update_time_to": datetime_to_iso(last_update_time_to),
5314
+ "end_time_from": datetime_to_iso(end_time_from),
5315
+ "end_time_to": datetime_to_iso(end_time_to),
5304
5316
  "with-notifications": with_notifications,
5305
5317
  "page": page,
5306
5318
  "page-size": page_size,
mlrun/db/nopdb.py CHANGED
@@ -138,6 +138,8 @@ class NopDB(RunDBInterface):
138
138
  start_time_to: Optional[datetime.datetime] = None,
139
139
  last_update_time_from: Optional[datetime.datetime] = None,
140
140
  last_update_time_to: Optional[datetime.datetime] = None,
141
+ end_time_from: Optional[datetime.datetime] = None,
142
+ end_time_to: Optional[datetime.datetime] = None,
141
143
  partition_by: Union[mlrun.common.schemas.RunPartitionByField, str] = None,
142
144
  rows_per_partition: int = 1,
143
145
  partition_sort_by: Union[mlrun.common.schemas.SortField, str] = None,
mlrun/lists.py CHANGED
@@ -29,6 +29,7 @@ list_header = [
29
29
  "uid",
30
30
  "iter",
31
31
  "start",
32
+ "end",
32
33
  "state",
33
34
  "kind",
34
35
  "name",
@@ -58,6 +59,7 @@ class RunList(list):
58
59
  get_in(run, "metadata.uid", ""),
59
60
  get_in(run, "metadata.iteration", ""),
60
61
  get_in(run, "status.start_time", ""),
62
+ get_in(run, "status.end_time", ""),
61
63
  get_in(run, "status.state", ""),
62
64
  get_in(run, "step_kind", get_in(run, "kind", "")),
63
65
  get_in(run, "metadata.name", ""),
@@ -103,7 +105,8 @@ class RunList(list):
103
105
  return self._df
104
106
  rows = self.to_rows(extend_iterations=extend_iterations)
105
107
  df = pd.DataFrame(rows[1:], columns=rows[0]) # .set_index('iter')
106
- df["start"] = pd.to_datetime(df["start"])
108
+ for time_column in ["start", "end"]:
109
+ df[time_column] = pd.to_datetime(df[time_column])
107
110
 
108
111
  if flat:
109
112
  df = flatten(df, "labels")
mlrun/model.py CHANGED
@@ -1284,6 +1284,7 @@ class RunStatus(ModelObj):
1284
1284
  results=None,
1285
1285
  artifacts=None,
1286
1286
  start_time=None,
1287
+ end_time=None,
1287
1288
  last_update=None,
1288
1289
  iterations=None,
1289
1290
  ui_url=None,
@@ -1299,6 +1300,7 @@ class RunStatus(ModelObj):
1299
1300
  self.results = results
1300
1301
  self._artifacts = artifacts
1301
1302
  self.start_time = start_time
1303
+ self.end_time = end_time
1302
1304
  self.last_update = last_update
1303
1305
  self.iterations = iterations
1304
1306
  self.ui_url = ui_url
mlrun/projects/project.py CHANGED
@@ -4661,6 +4661,8 @@ class MlrunProject(ModelObj):
4661
4661
  start_time_to: Optional[datetime.datetime] = None,
4662
4662
  last_update_time_from: Optional[datetime.datetime] = None,
4663
4663
  last_update_time_to: Optional[datetime.datetime] = None,
4664
+ end_time_from: Optional[datetime.datetime] = None,
4665
+ end_time_to: Optional[datetime.datetime] = None,
4664
4666
  **kwargs,
4665
4667
  ) -> mlrun.lists.RunList:
4666
4668
  """Retrieve a list of runs.
@@ -4704,6 +4706,8 @@ class MlrunProject(ModelObj):
4704
4706
  :param last_update_time_from: Filter by run last update time in ``(last_update_time_from,
4705
4707
  last_update_time_to)``.
4706
4708
  :param last_update_time_to: Filter by run last update time in ``(last_update_time_from, last_update_time_to)``.
4709
+ :param end_time_from: Filter by run end time in ``[end_time_from, end_time_to]``.
4710
+ :param end_time_to: Filter by run end time in ``[end_time_from, end_time_to]``.
4707
4711
  """
4708
4712
  if state:
4709
4713
  # TODO: Remove this in 1.9.0
@@ -4730,6 +4734,8 @@ class MlrunProject(ModelObj):
4730
4734
  start_time_to=start_time_to,
4731
4735
  last_update_time_from=last_update_time_from,
4732
4736
  last_update_time_to=last_update_time_to,
4737
+ end_time_from=end_time_from,
4738
+ end_time_to=end_time_to,
4733
4739
  **kwargs,
4734
4740
  )
4735
4741
 
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "d9ddaa33eb375080a0577da3aa2849915b60e30d",
3
- "version": "1.8.0-rc26"
2
+ "git_commit": "c482a37271171c5e81f9f977f8c1d584431826a7",
3
+ "version": "1.8.0-rc27"
4
4
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: mlrun
3
- Version: 1.8.0rc26
3
+ Version: 1.8.0rc27
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
@@ -1,12 +1,12 @@
1
1
  mlrun/__init__.py,sha256=zS40Lp5ZKivLBlNDkv-OQmVvwDib7C-cCdtD6UKXe28,8808
2
- mlrun/__main__.py,sha256=3CJdwbSQGpbEhnAnVN_-CkQmLOPUUXTKhMf7xIWNQrc,46138
3
- mlrun/config.py,sha256=zzR_qbNuA-lLIScx5GLRIF21eNJIoiVeBU-JS_movKo,71711
2
+ mlrun/__main__.py,sha256=ysteSDo1LYe_YOXVdIVEJ3BhLPOfBngkEfRg5iaGGg4,46202
3
+ mlrun/config.py,sha256=4m3fSgKZyYNXw15rJFzEXLFj4ZgEOaTiNTZ4iEly6PE,71882
4
4
  mlrun/errors.py,sha256=LkcbXTLANGdsgo2CRX2pdbyNmt--lMsjGv0XZMgP-Nc,8222
5
5
  mlrun/execution.py,sha256=TIrCxh-FC2VYyVaz_-xVUfOkY3jJh26NUaFt0ZGlIto,49548
6
6
  mlrun/features.py,sha256=ReBaNGsBYXqcbgI012n-SO_j6oHIbk_Vpv0CGPXbUmo,15842
7
7
  mlrun/k8s_utils.py,sha256=mRQMs6NzPq36vx1n5_2BfFapXysc8wv3NcrZ77_2ANA,8949
8
- mlrun/lists.py,sha256=1hFv3Iyu5DVX1kdBGJmwUoY0CqrzauhKdSq9g3piHb4,8442
9
- mlrun/model.py,sha256=Qmj0UH5H0GKd6ZwxugxCvoqSP3O5q0LV0wSlHIzkyIM,85312
8
+ mlrun/lists.py,sha256=-nbmqScRia0v2IdSHt6Pd0fLRLSEtdB9bSxyD92BWvs,8562
9
+ mlrun/model.py,sha256=Fh8aoMVDiWY7CiMsuLGaA2zCv17DklmW2dbTp3ZpG7M,85368
10
10
  mlrun/render.py,sha256=940H9fBBFeghH4dlifbURvtjlvw4GlWdAXezN6ky4rI,13275
11
11
  mlrun/run.py,sha256=ht5tg-Sge_IYHILd55ym_HJTSmimu6sjBvSc5JzVqJc,45151
12
12
  mlrun/secrets.py,sha256=dZPdkc_zzfscVQepOHUwmzFqnBavDCBXV9DQoH_eIYM,7800
@@ -18,7 +18,7 @@ mlrun/artifacts/base.py,sha256=nz2ZqC74JGfWN0M6_hOXXQj3bXSTxNp4eUgvWHVcdvY,29979
18
18
  mlrun/artifacts/dataset.py,sha256=QTot5vCgLHatlIWwNnKbWdZ8HHTxaZ7wk4gWQDoqQ2k,16655
19
19
  mlrun/artifacts/document.py,sha256=O2nZhM47y6-miy47cIEBzLZyW92ZT2rxa-TMCAJlNY0,17181
20
20
  mlrun/artifacts/manager.py,sha256=bXb70mKF6wIGs7syCiFfGnjalqx4g9bO_J5DaVzUUKw,16163
21
- mlrun/artifacts/model.py,sha256=jeOjUq_iZSHoNqlPyGgOz6acwje1Yqpg1yZwF9GbyG8,21615
21
+ mlrun/artifacts/model.py,sha256=H5g7rINXol_aTcYIQaKRx1CO90b1h_3aajsItqef4-w,22144
22
22
  mlrun/artifacts/plots.py,sha256=dS0mHGt1b20tN2JyEH9H5o5I0oMKZkzn3Uz_3Hf4WjU,4813
23
23
  mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
24
24
  mlrun/common/constants.py,sha256=14xMUX9C5BB-LxsTlMTJQf_Xz2DyRjaK9yeR5dadcDU,3426
@@ -37,7 +37,7 @@ mlrun/common/formatters/pipeline.py,sha256=oATD3znsuq3s7LipPnZivDPelTX0hJ0MFeeXO
37
37
  mlrun/common/formatters/project.py,sha256=0G4lhcTAsxQCxd40dKC4894cMH8nKt03BcGyp9wQO14,2102
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
- mlrun/common/model_monitoring/helpers.py,sha256=lV86teJYoE3MNDx4yhpbzO1KylWmvDbuNODw5yGZwgs,2943
40
+ mlrun/common/model_monitoring/helpers.py,sha256=wNIvaLMtUAu875JPxTnOzmBpkFGamKBDAAdBsZEd6lQ,2949
41
41
  mlrun/common/runtimes/constants.py,sha256=07wD1g8QjXZe1fm2hSMOxZG19aAUsEZM8WeXnyoBd6Q,12127
42
42
  mlrun/common/schemas/__init__.py,sha256=PBuIAhXSkVEVxxKcv5hR_xvTwNAUqxOXHVPugOoWTyM,5386
43
43
  mlrun/common/schemas/alert.py,sha256=tRsjHEQTjCb-83GS0mprsu5junvqL4aQjWN2Rt_yAaM,10183
@@ -72,7 +72,7 @@ mlrun/common/schemas/secret.py,sha256=CCxFYiPwJtDxwg2VVJH9nUG9cAZ2a34IjeuaWv-BYl
72
72
  mlrun/common/schemas/tag.py,sha256=HRZi5QZ4vVGaCr2AMk9eJgcNiAIXmH4YDc8a4fvF770,893
73
73
  mlrun/common/schemas/workflow.py,sha256=6u9niXfXpV-_c2rZL97gFIdAnOfM5WK-OCbrM5Kk34s,2108
74
74
  mlrun/common/schemas/model_monitoring/__init__.py,sha256=jz0fvdn8BEecgUCKhiSNH6QtFhSW4O19Ql9KXo0AxOg,1900
75
- mlrun/common/schemas/model_monitoring/constants.py,sha256=UcRJ2hSyGAnyObQel5RtK58b-wGaQrowz_xDvp4Z7x0,12636
75
+ mlrun/common/schemas/model_monitoring/constants.py,sha256=Yjzj8XQ95QLOCQwWt1-sTRdZdDDSLJutz5vWqPItOAM,12591
76
76
  mlrun/common/schemas/model_monitoring/grafana.py,sha256=Rq10KKOyyUYr7qOQFZfwGZtUim0LY9O0LQ5uc9jmIVQ,1562
77
77
  mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=0gBH-KnDDbGLOkiqHtk0_iNIdW-NPVy0TKJnZ1fDcEQ,11807
78
78
  mlrun/data_types/__init__.py,sha256=unRo9GGwCmj0hBKBRsXJ2P4BzpQaddlQTvIrVQaKluI,984
@@ -107,10 +107,10 @@ mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev
107
107
  mlrun/datastore/wasbfs/fs.py,sha256=ge8NK__5vTcFT-krI155_8RDUywQw4SIRX6BWATXy9Q,6299
108
108
  mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
109
109
  mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
110
- mlrun/db/base.py,sha256=hYxV5VIz7EbnOA7AXIfWv52ABueCka07xM6xpH2hbto,30600
110
+ mlrun/db/base.py,sha256=JQMligePluOeS2c3XX0IAk91k92U13-qCC-ZY61y0Ps,30716
111
111
  mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
112
- mlrun/db/httpdb.py,sha256=FzPF5kzE68k3paX93hEoOVRwvuK9BFpGHJJpQT5MrtI,231099
113
- mlrun/db/nopdb.py,sha256=8nAuIn52NAfrKmk8EnE9kewLeGWOR29PxqVmfLxhhUw,27035
112
+ mlrun/db/httpdb.py,sha256=ijCMWi60dIdIP3jSQAxsQqj9EjnC_abDv3kGfDDjm-w,231735
113
+ mlrun/db/nopdb.py,sha256=I_0SkOY0pi5aTdNSiEaNcPSLENT8CBBy1OVRKCTGsvw,27151
114
114
  mlrun/feature_store/__init__.py,sha256=AVnY2AFUNc2dKxLLUMx2K3Wo1eGviv0brDcYlDnmtf4,1506
115
115
  mlrun/feature_store/api.py,sha256=qkojZpzqGAn3r9ww0ynBRKOs8ji8URaK4DSYD4SE-CE,50395
116
116
  mlrun/feature_store/common.py,sha256=Z7USI-d1fo0iwBMsqMBtJflJfyuiV3BLoDXQPSAoBAs,12826
@@ -267,7 +267,7 @@ mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13
267
267
  mlrun/projects/__init__.py,sha256=0Krf0WIKfnZa71WthYOg0SoaTodGg3sV_hK3f_OlTPI,1220
268
268
  mlrun/projects/operations.py,sha256=VXUlMrouFTls-I-bMhdN5pPfQ34TR7bFQ-NUSWNvl84,20029
269
269
  mlrun/projects/pipelines.py,sha256=3UmjPKKAKKttdAOFnv_3vF0YLU1LHKQqUO2xp0K5yng,47915
270
- mlrun/projects/project.py,sha256=4RP8hH7rBdRVQPP4JiEqt6W4dAG-3mWUK2iPL9fAIQM,234437
270
+ mlrun/projects/project.py,sha256=xf4YbbzVaFh8Z4c8PfKxPTv7sgd2c7pwEsQYmfLjxFE,234809
271
271
  mlrun/runtimes/__init__.py,sha256=J9Sy2HiyMlztNv6VUurMzF5H2XzttNil8nRsWDsqLyg,8923
272
272
  mlrun/runtimes/base.py,sha256=Yt2l7srrXjK783cunBEKH0yQxQZRH8lkedXNOXuLbbo,37841
273
273
  mlrun/runtimes/daskjob.py,sha256=JwuGvOiPsxEDHHMMUS4Oie4hLlYYIZwihAl6DjroTY0,19521
@@ -337,11 +337,11 @@ mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAq
337
337
  mlrun/utils/notifications/notification/slack.py,sha256=eQvmctTh6wIG5xVOesLLV9S1-UUCu5UEQ9JIJOor3ts,7183
338
338
  mlrun/utils/notifications/notification/webhook.py,sha256=NeyIMSBojjjTJaUHmPbxMByp34GxYkl1-16NqzU27fU,4943
339
339
  mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
340
- mlrun/utils/version/version.json,sha256=wrkxem6xGg7JTfrowBrtKwngt9TYgm-6riSXX68rrA8,89
340
+ mlrun/utils/version/version.json,sha256=-9Zh51rFvpmQCmLL4-Xi7uSMkjBw-RasTJKe24YTvss,89
341
341
  mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
342
- mlrun-1.8.0rc26.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
343
- mlrun-1.8.0rc26.dist-info/METADATA,sha256=VX9gsi_OEK4mR5gOUw-UGcyrp4VVLz3oMU89ADbY_MI,25888
344
- mlrun-1.8.0rc26.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
345
- mlrun-1.8.0rc26.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
346
- mlrun-1.8.0rc26.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
347
- mlrun-1.8.0rc26.dist-info/RECORD,,
342
+ mlrun-1.8.0rc27.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
343
+ mlrun-1.8.0rc27.dist-info/METADATA,sha256=Oav6I7kIOoc-SJd3JvSEp_x1LE6VWlyW8KfM4hLWxWM,25888
344
+ mlrun-1.8.0rc27.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
345
+ mlrun-1.8.0rc27.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
346
+ mlrun-1.8.0rc27.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
347
+ mlrun-1.8.0rc27.dist-info/RECORD,,