mlrun 1.8.0rc13__py3-none-any.whl → 1.8.0rc15__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/common/types.py CHANGED
@@ -31,6 +31,7 @@ class HTTPMethod(StrEnum):
31
31
  POST = "POST"
32
32
  DELETE = "DELETE"
33
33
  PATCH = "PATCH"
34
+ PUT = "PUT"
34
35
 
35
36
 
36
37
  class Operation(StrEnum):
mlrun/config.py CHANGED
@@ -83,7 +83,7 @@ default_config = {
83
83
  "images_to_enrich_registry": "^mlrun/*,python:3.9",
84
84
  "kfp_url": "",
85
85
  "kfp_ttl": "14400", # KFP ttl in sec, after that completed PODs will be deleted
86
- "kfp_image": "mlrun/mlrun", # image to use for KFP runner (defaults to mlrun/mlrun)
86
+ "kfp_image": "mlrun/mlrun-kfp", # image to use for KFP runner (defaults to mlrun/mlrun-kfp)
87
87
  "dask_kfp_image": "mlrun/ml-base", # image to use for dask KFP runner (defaults to mlrun/ml-base)
88
88
  "igz_version": "", # the version of the iguazio system the API is running on
89
89
  "iguazio_api_url": "", # the url to iguazio api
@@ -645,7 +645,7 @@ default_config = {
645
645
  "auto_add_project_secrets": True,
646
646
  "project_secret_name": "mlrun-project-secrets-{project}",
647
647
  "auth_secret_name": "mlrun-auth-secrets.{hashed_access_key}",
648
- "env_variable_prefix": "MLRUN_K8S_SECRET__",
648
+ "env_variable_prefix": "",
649
649
  "global_function_env_secret_name": None,
650
650
  },
651
651
  },
@@ -825,6 +825,7 @@ default_config = {
825
825
  "refresh_interval": "30",
826
826
  }
827
827
  },
828
+ "system_id": "",
828
829
  }
829
830
  _is_running_as_api = None
830
831
 
mlrun/db/base.py CHANGED
@@ -908,6 +908,14 @@ class RunDBInterface(ABC):
908
908
  ):
909
909
  pass
910
910
 
911
+ def update_alert_activation(
912
+ self,
913
+ activation_id: int,
914
+ activation_time: datetime.datetime,
915
+ notifications_states,
916
+ ):
917
+ pass
918
+
911
919
  @abstractmethod
912
920
  def get_builder_status(
913
921
  self,
mlrun/db/httpdb.py CHANGED
@@ -850,8 +850,9 @@ class HTTPRunDB(RunDBInterface):
850
850
  with_notifications: bool = False,
851
851
  ) -> RunList:
852
852
  """
853
- Retrieve a list of runs, filtered by various options.
854
- If no filter is provided, will return runs from the last week.
853
+ Retrieve a list of runs.
854
+ The default returns the runs from the last week, partitioned by project/name.
855
+ To override the default, specify any filter.
855
856
 
856
857
  Example::
857
858
 
@@ -3844,7 +3845,7 @@ class HTTPRunDB(RunDBInterface):
3844
3845
  """
3845
3846
  self.api_call(
3846
3847
  method=mlrun.common.types.HTTPMethod.PATCH,
3847
- path=f"projects/{project}/model-monitoring/model-monitoring-controller",
3848
+ path=f"projects/{project}/model-monitoring/controller",
3848
3849
  params={
3849
3850
  "base_period": base_period,
3850
3851
  "image": image,
@@ -3880,8 +3881,8 @@ class HTTPRunDB(RunDBInterface):
3880
3881
 
3881
3882
  """
3882
3883
  self.api_call(
3883
- method=mlrun.common.types.HTTPMethod.POST,
3884
- path=f"projects/{project}/model-monitoring/enable-model-monitoring",
3884
+ method=mlrun.common.types.HTTPMethod.PUT,
3885
+ path=f"projects/{project}/model-monitoring/",
3885
3886
  params={
3886
3887
  "base_period": base_period,
3887
3888
  "image": image,
@@ -3925,7 +3926,7 @@ class HTTPRunDB(RunDBInterface):
3925
3926
  """
3926
3927
  response = self.api_call(
3927
3928
  method=mlrun.common.types.HTTPMethod.DELETE,
3928
- path=f"projects/{project}/model-monitoring/disable-model-monitoring",
3929
+ path=f"projects/{project}/model-monitoring/",
3929
3930
  params={
3930
3931
  "delete_resources": delete_resources,
3931
3932
  "delete_stream_function": delete_stream_function,
@@ -4008,8 +4009,8 @@ class HTTPRunDB(RunDBInterface):
4008
4009
  :param image: The image on which the application will run.
4009
4010
  """
4010
4011
  self.api_call(
4011
- method=mlrun.common.types.HTTPMethod.POST,
4012
- path=f"projects/{project}/model-monitoring/deploy-histogram-data-drift-app",
4012
+ method=mlrun.common.types.HTTPMethod.PUT,
4013
+ path=f"projects/{project}/model-monitoring/histogram-data-drift-app",
4013
4014
  params={"image": image},
4014
4015
  )
4015
4016
 
@@ -4027,8 +4028,8 @@ class HTTPRunDB(RunDBInterface):
4027
4028
  :param replace_creds: If True, will override the existing credentials.
4028
4029
  """
4029
4030
  self.api_call(
4030
- method=mlrun.common.types.HTTPMethod.POST,
4031
- path=f"projects/{project}/model-monitoring/set-model-monitoring-credentials",
4031
+ method=mlrun.common.types.HTTPMethod.PUT,
4032
+ path=f"projects/{project}/model-monitoring/credentials",
4032
4033
  params={**credentials, "replace_creds": replace_creds},
4033
4034
  )
4034
4035
 
@@ -108,27 +108,6 @@ class TDEngineSchema:
108
108
  )
109
109
  return f"CREATE TABLE if NOT EXISTS {self.database}.{subtable} USING {self.super_table} TAGS ({tags});"
110
110
 
111
- @staticmethod
112
- def _insert_subtable_stmt(
113
- statement: taosws.TaosStmt,
114
- columns: dict[str, _TDEngineColumn],
115
- subtable: str,
116
- values: dict[str, Union[str, int, float, datetime.datetime]],
117
- ) -> taosws.TaosStmt:
118
- question_marks = ", ".join("?" * len(columns))
119
- statement.prepare(f"INSERT INTO ? VALUES ({question_marks});")
120
- statement.set_tbname(subtable)
121
-
122
- bind_params = []
123
-
124
- for col_name, col_type in columns.items():
125
- val = values[col_name]
126
- bind_params.append(values_to_column([val], col_type))
127
-
128
- statement.bind_param(bind_params)
129
- statement.add_batch()
130
- return statement
131
-
132
111
  def _delete_subtable_query(
133
112
  self,
134
113
  subtable: str,
@@ -26,7 +26,6 @@ import mlrun.common.schemas.model_monitoring as mm_schemas
26
26
  import mlrun.model_monitoring.db.tsdb.tdengine.schemas as tdengine_schemas
27
27
  import mlrun.model_monitoring.db.tsdb.tdengine.stream_graph_steps
28
28
  from mlrun.model_monitoring.db import TSDBConnector
29
- from mlrun.model_monitoring.db.tsdb.tdengine.schemas import TDEngineSchema
30
29
  from mlrun.model_monitoring.helpers import get_invocations_fqn
31
30
  from mlrun.utils import logger
32
31
 
@@ -147,8 +146,9 @@ class TDEngineConnector(TSDBConnector):
147
146
  create_table_sql = table._create_subtable_sql(subtable=table_name, values=event)
148
147
 
149
148
  insert_statement = Statement(
150
- TDEngineSchema._insert_subtable_stmt,
151
- dict(columns=table.columns, subtable=table_name, values=event),
149
+ columns=table.columns,
150
+ subtable=table_name,
151
+ values=event,
152
152
  )
153
153
 
154
154
  self.connection.run(
@@ -646,10 +646,14 @@ class _KFPRunner(_PipelineRunner):
646
646
  func_name=func.metadata.name,
647
647
  exc_info=err_to_str(exc),
648
648
  )
649
- project.notifiers.push_pipeline_start_message(
650
- project.metadata.name,
651
- context.uid,
652
- )
649
+
650
+ # TODO: we should check how can we get the run uid when we don't the the context (for example on
651
+ # mlrun.load_project() and later call directly to project.run)
652
+ if context:
653
+ project.notifiers.push_pipeline_start_message(
654
+ project.metadata.name,
655
+ context.uid,
656
+ )
653
657
  pipeline_context.clear()
654
658
  return _PipelineRunStatus(run_id, cls, project=project, workflow=workflow_spec)
655
659
 
mlrun/projects/project.py CHANGED
@@ -4519,7 +4519,9 @@ class MlrunProject(ModelObj):
4519
4519
  last_update_time_to: Optional[datetime.datetime] = None,
4520
4520
  **kwargs,
4521
4521
  ) -> mlrun.lists.RunList:
4522
- """Retrieve a list of runs, filtered by various options.
4522
+ """Retrieve a list of runs.
4523
+ The default returns the runs from the last week, partitioned by name.
4524
+ To override the default, specify any filter.
4523
4525
 
4524
4526
  The returned result is a `` (list of dict), use `.to_objects()` to convert it to a list of RunObjects,
4525
4527
  `.show()` to view graphically in Jupyter, `.to_df()` to convert to a DataFrame, and `compare()` to
mlrun/utils/helpers.py CHANGED
@@ -26,7 +26,7 @@ import sys
26
26
  import typing
27
27
  import uuid
28
28
  import warnings
29
- from datetime import datetime, timezone
29
+ from datetime import datetime, timedelta, timezone
30
30
  from importlib import import_module, reload
31
31
  from os import path
32
32
  from types import ModuleType
@@ -405,6 +405,28 @@ def now_date(tz: timezone = timezone.utc) -> datetime:
405
405
  return datetime.now(tz=tz)
406
406
 
407
407
 
408
+ def datetime_to_mysql_ts(datetime_object: datetime) -> datetime:
409
+ """
410
+ Convert a Python datetime object to a MySQL-compatible timestamp string,
411
+ rounded to the nearest millisecond.
412
+ Example: 2024-12-18T16:36:05.235687+00:00 -> 2024-12-18T16:36:05.236000
413
+
414
+ :param datetime_object: A Python datetime object.
415
+
416
+ :return: A MySQL-compatible timestamp string with millisecond precision.
417
+ """
418
+ if not datetime_object.tzinfo:
419
+ datetime_object = datetime_object.replace(tzinfo=timezone.utc)
420
+
421
+ # Round to the nearest millisecond
422
+ ms = round(datetime_object.microsecond / 1000) * 1000
423
+ if ms == 1000000:
424
+ datetime_object += timedelta(seconds=1)
425
+ ms = 0
426
+
427
+ return datetime_object.replace(microsecond=ms)
428
+
429
+
408
430
  def datetime_min(tz: timezone = timezone.utc) -> datetime:
409
431
  return datetime(1970, 1, 1, tzinfo=tz)
410
432
 
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "6b23c9dc1a77d33bf56dd6e91623278630bb46c4",
3
- "version": "1.8.0-rc13"
2
+ "git_commit": "6aa0bfdf77d03774890da6714fc3aca778bb9f26",
3
+ "version": "1.8.0-rc15"
4
4
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mlrun
3
- Version: 1.8.0rc13
3
+ Version: 1.8.0rc15
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,10 +51,12 @@ 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.2.3
55
- Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.2.3; python_version < "3.11"
54
+ Requires-Dist: mlrun-pipelines-kfp-common~=0.3.3
55
+ Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.3.3; python_version < "3.11"
56
56
  Requires-Dist: docstring_parser~=0.16
57
57
  Requires-Dist: aiosmtplib~=3.0
58
+ Requires-Dist: grpcio-tools~=1.48.2; python_version < "3.11"
59
+ Requires-Dist: grpcio~=1.48.2; python_version < "3.11"
58
60
  Provides-Extra: s3
59
61
  Requires-Dist: boto3<1.36,>=1.28.0; extra == "s3"
60
62
  Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "s3"
@@ -99,9 +101,11 @@ Requires-Dist: ossfs==2023.12.0; extra == "alibaba-oss"
99
101
  Requires-Dist: oss2==2.18.1; extra == "alibaba-oss"
100
102
  Provides-Extra: tdengine
101
103
  Requires-Dist: taos-ws-py==0.3.2; extra == "tdengine"
102
- Requires-Dist: taoswswrap~=0.2.0; extra == "tdengine"
104
+ Requires-Dist: taoswswrap~=0.3.0; extra == "tdengine"
103
105
  Provides-Extra: snowflake
104
106
  Requires-Dist: snowflake-connector-python~=3.7; extra == "snowflake"
107
+ Provides-Extra: kfp18
108
+ Requires-Dist: mlrun_pipelines_kfp_v1_8[kfp]>=0.3.2; python_version < "3.11" and extra == "kfp18"
105
109
  Provides-Extra: api
106
110
  Requires-Dist: uvicorn~=0.32.1; extra == "api"
107
111
  Requires-Dist: dask-kubernetes~=0.11.0; extra == "api"
@@ -116,6 +120,7 @@ Requires-Dist: alembic~=1.14; extra == "api"
116
120
  Requires-Dist: timelength~=1.1; extra == "api"
117
121
  Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "api"
118
122
  Requires-Dist: aiosmtplib~=3.0; extra == "api"
123
+ Requires-Dist: pydantic<2,>=1; extra == "api"
119
124
  Provides-Extra: all
120
125
  Requires-Dist: adlfs==2023.9.0; extra == "all"
121
126
  Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "all"
@@ -146,7 +151,7 @@ Requires-Dist: s3fs<2024.7,>=2023.9.2; extra == "all"
146
151
  Requires-Dist: snowflake-connector-python~=3.7; extra == "all"
147
152
  Requires-Dist: sqlalchemy~=1.4; extra == "all"
148
153
  Requires-Dist: taos-ws-py==0.3.2; extra == "all"
149
- Requires-Dist: taoswswrap~=0.2.0; extra == "all"
154
+ Requires-Dist: taoswswrap~=0.3.0; extra == "all"
150
155
  Provides-Extra: complete
151
156
  Requires-Dist: adlfs==2023.9.0; extra == "complete"
152
157
  Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "complete"
@@ -176,7 +181,7 @@ Requires-Dist: s3fs<2024.7,>=2023.9.2; extra == "complete"
176
181
  Requires-Dist: snowflake-connector-python~=3.7; extra == "complete"
177
182
  Requires-Dist: sqlalchemy~=1.4; extra == "complete"
178
183
  Requires-Dist: taos-ws-py==0.3.2; extra == "complete"
179
- Requires-Dist: taoswswrap~=0.2.0; extra == "complete"
184
+ Requires-Dist: taoswswrap~=0.3.0; extra == "complete"
180
185
  Provides-Extra: complete-api
181
186
  Requires-Dist: adlfs==2023.9.0; extra == "complete-api"
182
187
  Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "complete-api"
@@ -209,6 +214,7 @@ Requires-Dist: objgraph~=3.6; extra == "complete-api"
209
214
  Requires-Dist: oss2==2.18.1; extra == "complete-api"
210
215
  Requires-Dist: ossfs==2023.12.0; extra == "complete-api"
211
216
  Requires-Dist: plotly~=5.23; extra == "complete-api"
217
+ Requires-Dist: pydantic<2,>=1; extra == "complete-api"
212
218
  Requires-Dist: pymysql~=1.1; extra == "complete-api"
213
219
  Requires-Dist: pyopenssl>=23; extra == "complete-api"
214
220
  Requires-Dist: redis~=4.3; extra == "complete-api"
@@ -216,7 +222,7 @@ Requires-Dist: s3fs<2024.7,>=2023.9.2; extra == "complete-api"
216
222
  Requires-Dist: snowflake-connector-python~=3.7; extra == "complete-api"
217
223
  Requires-Dist: sqlalchemy~=1.4; extra == "complete-api"
218
224
  Requires-Dist: taos-ws-py==0.3.2; extra == "complete-api"
219
- Requires-Dist: taoswswrap~=0.2.0; extra == "complete-api"
225
+ Requires-Dist: taoswswrap~=0.3.0; extra == "complete-api"
220
226
  Requires-Dist: timelength~=1.1; extra == "complete-api"
221
227
  Requires-Dist: uvicorn~=0.32.1; extra == "complete-api"
222
228
 
@@ -1,6 +1,6 @@
1
1
  mlrun/__init__.py,sha256=7vuMpUiigXXDrghLRq680LKWy1faC0kQyGCZb_7cwyE,7473
2
2
  mlrun/__main__.py,sha256=o65gXHhmFA9GV_n2mqmAO80nW3MAwo_s7j80IKgCzRE,45949
3
- mlrun/config.py,sha256=HFQv1Qx3swxEW-QDITkakMrx6IcEEwApmkd1o38PDAI,70992
3
+ mlrun/config.py,sha256=cN_o0nSf7SJLi8xxg4kQ-_Kg5ZasUxA8IP6b-pyJJCc,71003
4
4
  mlrun/errors.py,sha256=5raKb1PXQpTcIvWQ4sr1qn2IS7P_GT_FydBJ0dXkVuc,8097
5
5
  mlrun/execution.py,sha256=sg3R6m5Vpg5VYMD-1B6-mpxW0ck6m9dmxN2fcGdJ3c8,48713
6
6
  mlrun/features.py,sha256=ReBaNGsBYXqcbgI012n-SO_j6oHIbk_Vpv0CGPXbUmo,15842
@@ -24,7 +24,7 @@ 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
26
26
  mlrun/common/secrets.py,sha256=vc8WV82EZsCB5ENjUkObFOzZP59aZ1w8F82PTnqwBnc,5181
27
- mlrun/common/types.py,sha256=APVFvumnHpCG-yXlt6OSioMfkyT-DADPiW3dGG3dUFQ,1057
27
+ mlrun/common/types.py,sha256=1gxThbmC0Vd0U1ffIkEwz4T4S7JOgHt70rvw8TCO21c,1073
28
28
  mlrun/common/db/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
29
29
  mlrun/common/db/sql_session.py,sha256=J6b-0xrnFb-8n_xdksPXeA8kArSMfAiSDN4n7iOhtus,2708
30
30
  mlrun/common/formatters/__init__.py,sha256=lHcGFKKXx4vcCgJ0n2KHYD5sY5p5MvPz3DO9RbUoEOM,891
@@ -107,9 +107,9 @@ 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=pedRSSq-_m5c6grWHpMT_MiukmWxc1YVSFwswf63YQY,29675
110
+ mlrun/db/base.py,sha256=dzYvS8mUBShit9UBqgKuu4AJZHx8dQiD8ys7x7jAW90,29845
111
111
  mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
112
- mlrun/db/httpdb.py,sha256=266EE-_ZMebs3EJKJLoi6e9slCDpo4IGhizMlj7doK4,226108
112
+ mlrun/db/httpdb.py,sha256=2hoWVRSHKjdhBhNK31f53tJN4TId5JFIdxP-TcC-IAs,226052
113
113
  mlrun/db/nopdb.py,sha256=CUIhRHxfoSXSgBksOWki0piC-fWNgtQvtZdnmCvH46Y,26663
114
114
  mlrun/feature_store/__init__.py,sha256=AVnY2AFUNc2dKxLLUMx2K3Wo1eGviv0brDcYlDnmtf4,1506
115
115
  mlrun/feature_store/api.py,sha256=qkojZpzqGAn3r9ww0ynBRKOs8ji8URaK4DSYD4SE-CE,50395
@@ -237,9 +237,9 @@ mlrun/model_monitoring/db/tsdb/__init__.py,sha256=Zqh_27I2YAEHk9nl0Z6lUxP7VEfrgr
237
237
  mlrun/model_monitoring/db/tsdb/base.py,sha256=EWm-56AzuLSH1JV6DAhSRu9sUel5YD6Ch1n5tgUHODo,20983
238
238
  mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
239
239
  mlrun/model_monitoring/db/tsdb/tdengine/__init__.py,sha256=vgBdsKaXUURKqIf3M0y4sRatmSVA4CQiJs7J5dcVBkQ,620
240
- mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=5otz6VXRYNMc55hq9SdTQoglywdr2Ylh-ApL1dCyqls,13169
240
+ mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=6de8P0CJMqe7PGttoZNt9UtrbBcJnpIp82hk_MbtepA,12477
241
241
  mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py,sha256=Uadj0UvAmln2MxDWod-kAzau1uNlqZh981rPhbUH_5M,2857
242
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=a2AjI7_jTnbJ8as1Bt0AMQcwsPgFsR0tvyxlKp3uZrs,29706
242
+ mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=Vbx5u4Y2ZbzbRQDwMIyz-9S0OgkGKw_gZTvWvF8Jp7I,29599
243
243
  mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
244
244
  mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=_-zo9relCDtjGgievxAcAP9gVN9nDWs8BzGtFwTjb9M,6284
245
245
  mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=_9n837rmlmxeEzqKjc5LerXRxNqKAgjMMzU-sKz4uyo,35668
@@ -266,8 +266,8 @@ mlrun/platforms/__init__.py,sha256=ZuyeHCHHUxYEoZRmaJqzFSfwhaTyUdBZXMeVp75ql1w,3
266
266
  mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13749
267
267
  mlrun/projects/__init__.py,sha256=0Krf0WIKfnZa71WthYOg0SoaTodGg3sV_hK3f_OlTPI,1220
268
268
  mlrun/projects/operations.py,sha256=VXUlMrouFTls-I-bMhdN5pPfQ34TR7bFQ-NUSWNvl84,20029
269
- mlrun/projects/pipelines.py,sha256=NCl48J6nTjlLobmzQnVB8MTMvnLg0_OTmJ7Fk7UefU8,47128
270
- mlrun/projects/project.py,sha256=D4kHK6k8inMrhYjRUGUbqU7dMQyNkDUnDh5DndxFe0o,227255
269
+ mlrun/projects/pipelines.py,sha256=srguKr5rpEuKGUFKiFJYgekRWpdDToLsZSLo_jT5cUE,47342
270
+ mlrun/projects/project.py,sha256=0d7iVqeKDVwc0ClqZekypCzHngCgmnUom2p0DBIAKeg,227357
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
@@ -318,7 +318,7 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
318
318
  mlrun/utils/clones.py,sha256=y3zC9QS7z5mLuvyQ6vFd6sJnikbgtDwrBvieQq0sovY,7359
319
319
  mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
320
320
  mlrun/utils/db.py,sha256=blQgkWMfFH9lcN4sgJQcPQgEETz2Dl_zwbVA0SslpFg,2186
321
- mlrun/utils/helpers.py,sha256=g9weVIuAoR_QuplJvVWpEmUhsyz78x2Jag9SP-8iPNQ,63476
321
+ mlrun/utils/helpers.py,sha256=3E7cQFcvcKdXmMnjsFY5r6cY6S0LxoFOrAkN6_jYw1s,64237
322
322
  mlrun/utils/http.py,sha256=t6FrXQstZm9xVVjxqIGiLzrwZNCR4CSienSOuVgNIcI,8706
323
323
  mlrun/utils/logger.py,sha256=_v4UTv1-STzC2c6aAWAa0NNl9STQoBYbR3OHgAiL41s,14606
324
324
  mlrun/utils/regex.py,sha256=IQqwPna6Z8J31xkTUduYbGk48GkQBUJFZSuxAWm1pzU,5162
@@ -337,11 +337,11 @@ mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAq
337
337
  mlrun/utils/notifications/notification/slack.py,sha256=NKV4RFiY3gLsS8uPppgniPLyag8zJ9O1VhixoXkM7kw,7108
338
338
  mlrun/utils/notifications/notification/webhook.py,sha256=M-pSBM2VTKVUPRERocjORlH6mKqo1K9ihVL5Qrn2GyM,4789
339
339
  mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
340
- mlrun/utils/version/version.json,sha256=NRcojevxzB3LkRGh9XYHV-DuGk-SpwErl7ELG1QmJow,89
340
+ mlrun/utils/version/version.json,sha256=dLS7bzsjhqqAGbDwpsDqJr_Thcb2YPX28-11V1PkMB0,89
341
341
  mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
342
- mlrun-1.8.0rc13.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
343
- mlrun-1.8.0rc13.dist-info/METADATA,sha256=NlZ2jzioUd_eB5WJ23rKuFaCY8iAI7kkmGuOZK9jJwg,24459
344
- mlrun-1.8.0rc13.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
345
- mlrun-1.8.0rc13.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
346
- mlrun-1.8.0rc13.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
347
- mlrun-1.8.0rc13.dist-info/RECORD,,
342
+ mlrun-1.8.0rc15.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
343
+ mlrun-1.8.0rc15.dist-info/METADATA,sha256=YcE9Vr4pxgEB1AHPfuZRJApqkMdK4dXpSASanMPn51A,24796
344
+ mlrun-1.8.0rc15.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
345
+ mlrun-1.8.0rc15.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
346
+ mlrun-1.8.0rc15.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
347
+ mlrun-1.8.0rc15.dist-info/RECORD,,