mlrun 1.6.2rc3__py3-none-any.whl → 1.6.2rc6__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 (48) hide show
  1. mlrun/common/db/sql_session.py +0 -3
  2. mlrun/common/model_monitoring/helpers.py +2 -4
  3. mlrun/common/schemas/__init__.py +0 -1
  4. mlrun/common/schemas/project.py +0 -2
  5. mlrun/config.py +10 -29
  6. mlrun/datastore/azure_blob.py +9 -9
  7. mlrun/datastore/base.py +28 -0
  8. mlrun/datastore/google_cloud_storage.py +6 -6
  9. mlrun/datastore/v3io.py +46 -70
  10. mlrun/db/base.py +0 -18
  11. mlrun/db/httpdb.py +25 -28
  12. mlrun/execution.py +3 -3
  13. mlrun/frameworks/tf_keras/callbacks/logging_callback.py +3 -3
  14. mlrun/frameworks/tf_keras/model_handler.py +7 -7
  15. mlrun/k8s_utils.py +5 -10
  16. mlrun/kfpops.py +10 -19
  17. mlrun/model.py +0 -5
  18. mlrun/model_monitoring/api.py +8 -8
  19. mlrun/model_monitoring/batch.py +1 -1
  20. mlrun/model_monitoring/stores/kv_model_endpoint_store.py +13 -13
  21. mlrun/model_monitoring/stores/sql_model_endpoint_store.py +1 -0
  22. mlrun/package/packagers/pandas_packagers.py +3 -3
  23. mlrun/package/utils/_archiver.py +1 -3
  24. mlrun/platforms/iguazio.py +65 -6
  25. mlrun/projects/pipelines.py +11 -21
  26. mlrun/projects/project.py +46 -65
  27. mlrun/runtimes/base.py +1 -24
  28. mlrun/runtimes/function.py +9 -9
  29. mlrun/runtimes/kubejob.py +3 -5
  30. mlrun/runtimes/local.py +2 -2
  31. mlrun/runtimes/mpijob/abstract.py +6 -6
  32. mlrun/runtimes/pod.py +3 -3
  33. mlrun/runtimes/serving.py +3 -3
  34. mlrun/runtimes/sparkjob/spark3job.py +3 -3
  35. mlrun/serving/remote.py +2 -4
  36. mlrun/utils/async_http.py +3 -3
  37. mlrun/utils/helpers.py +0 -8
  38. mlrun/utils/http.py +3 -3
  39. mlrun/utils/logger.py +2 -2
  40. mlrun/utils/notifications/notification_pusher.py +6 -6
  41. mlrun/utils/version/version.json +2 -2
  42. {mlrun-1.6.2rc3.dist-info → mlrun-1.6.2rc6.dist-info}/METADATA +16 -14
  43. {mlrun-1.6.2rc3.dist-info → mlrun-1.6.2rc6.dist-info}/RECORD +47 -48
  44. {mlrun-1.6.2rc3.dist-info → mlrun-1.6.2rc6.dist-info}/WHEEL +1 -1
  45. mlrun/common/schemas/common.py +0 -40
  46. {mlrun-1.6.2rc3.dist-info → mlrun-1.6.2rc6.dist-info}/LICENSE +0 -0
  47. {mlrun-1.6.2rc3.dist-info → mlrun-1.6.2rc6.dist-info}/entry_points.txt +0 -0
  48. {mlrun-1.6.2rc3.dist-info → mlrun-1.6.2rc6.dist-info}/top_level.txt +0 -0
mlrun/runtimes/base.py CHANGED
@@ -15,7 +15,6 @@ import enum
15
15
  import http
16
16
  import re
17
17
  import typing
18
- import warnings
19
18
  from base64 import b64encode
20
19
  from os import environ
21
20
  from typing import Callable, Dict, List, Optional, Union
@@ -125,7 +124,7 @@ class FunctionSpec(ModelObj):
125
124
  self.allow_empty_resources = None
126
125
  # the build.source is cloned/extracted to the specified clone_target_dir
127
126
  # if a relative path is specified, it will be enriched with a temp dir path
128
- self._clone_target_dir = clone_target_dir or None
127
+ self.clone_target_dir = clone_target_dir or ""
129
128
 
130
129
  @property
131
130
  def build(self) -> ImageBuilder:
@@ -135,28 +134,6 @@ class FunctionSpec(ModelObj):
135
134
  def build(self, build):
136
135
  self._build = self._verify_dict(build, "build", ImageBuilder)
137
136
 
138
- @property
139
- def clone_target_dir(self):
140
- # TODO: remove this property in 1.9.0
141
- if self.build.source_code_target_dir:
142
- warnings.warn(
143
- "The clone_target_dir attribute is deprecated in 1.6.2 and will be removed in 1.9.0. "
144
- "Use spec.build.source_code_target_dir instead.",
145
- FutureWarning,
146
- )
147
- return self.build.source_code_target_dir
148
-
149
- @clone_target_dir.setter
150
- def clone_target_dir(self, clone_target_dir):
151
- # TODO: remove this property in 1.9.0
152
- if clone_target_dir:
153
- warnings.warn(
154
- "The clone_target_dir attribute is deprecated in 1.6.2 and will be removed in 1.9.0. "
155
- "Use spec.build.source_code_target_dir instead.",
156
- FutureWarning,
157
- )
158
- self.build.source_code_target_dir = clone_target_dir
159
-
160
137
  def enrich_function_preemption_spec(self):
161
138
  pass
162
139
 
@@ -432,15 +432,15 @@ class RemoteRuntime(KubeResource):
432
432
  raise ValueError(
433
433
  "gateway timeout must be greater than the worker timeout"
434
434
  )
435
- annotations["nginx.ingress.kubernetes.io/proxy-connect-timeout"] = (
436
- f"{gateway_timeout}"
437
- )
438
- annotations["nginx.ingress.kubernetes.io/proxy-read-timeout"] = (
439
- f"{gateway_timeout}"
440
- )
441
- annotations["nginx.ingress.kubernetes.io/proxy-send-timeout"] = (
442
- f"{gateway_timeout}"
443
- )
435
+ annotations[
436
+ "nginx.ingress.kubernetes.io/proxy-connect-timeout"
437
+ ] = f"{gateway_timeout}"
438
+ annotations[
439
+ "nginx.ingress.kubernetes.io/proxy-read-timeout"
440
+ ] = f"{gateway_timeout}"
441
+ annotations[
442
+ "nginx.ingress.kubernetes.io/proxy-send-timeout"
443
+ ] = f"{gateway_timeout}"
444
444
 
445
445
  trigger = nuclio.HttpTrigger(
446
446
  workers=workers,
mlrun/runtimes/kubejob.py CHANGED
@@ -73,7 +73,7 @@ class KubejobRuntime(KubeResource):
73
73
  if workdir:
74
74
  self.spec.workdir = workdir
75
75
  if target_dir:
76
- self.spec.build.source_code_target_dir = target_dir
76
+ self.spec.clone_target_dir = target_dir
77
77
 
78
78
  self.spec.build.load_source_on_run = pull_at_runtime
79
79
  if (
@@ -232,10 +232,8 @@ class KubejobRuntime(KubeResource):
232
232
  self.spec.build.base_image = self.spec.build.base_image or get_in(
233
233
  data, "data.spec.build.base_image"
234
234
  )
235
- # Get the source target dir in case it was enriched due to loading source
236
- self.spec.build.source_code_target_dir = get_in(
237
- data, "data.spec.build.source_code_target_dir"
238
- ) or get_in(data, "data.spec.clone_target_dir")
235
+ # get the clone target dir in case it was enriched due to loading source
236
+ self.spec.clone_target_dir = get_in(data, "data.spec.clone_target_dir")
239
237
  ready = data.get("ready", False)
240
238
  if not ready:
241
239
  logger.info(
mlrun/runtimes/local.py CHANGED
@@ -218,7 +218,7 @@ class LocalRuntime(BaseRuntime, ParallelRunner):
218
218
  if workdir:
219
219
  self.spec.workdir = workdir
220
220
  if target_dir:
221
- self.spec.build.source_code_target_dir = target_dir
221
+ self.spec.clone_target_dir = target_dir
222
222
 
223
223
  def is_deployed(self):
224
224
  return True
@@ -240,7 +240,7 @@ class LocalRuntime(BaseRuntime, ParallelRunner):
240
240
  if self.spec.build.source and not hasattr(self, "_is_run_local"):
241
241
  target_dir = extract_source(
242
242
  self.spec.build.source,
243
- self.spec.build.source_code_target_dir,
243
+ self.spec.clone_target_dir,
244
244
  secrets=execution._secrets_manager,
245
245
  )
246
246
  if workdir and not workdir.startswith("/"):
@@ -196,13 +196,13 @@ class AbstractMPIJobRuntime(KubejobRuntime, abc.ABC):
196
196
  if steps_per_sample is not None:
197
197
  horovod_autotune_settings["autotune-steps-per-sample"] = steps_per_sample
198
198
  if bayes_opt_max_samples is not None:
199
- horovod_autotune_settings["autotune-bayes-opt-max-samples"] = (
200
- bayes_opt_max_samples
201
- )
199
+ horovod_autotune_settings[
200
+ "autotune-bayes-opt-max-samples"
201
+ ] = bayes_opt_max_samples
202
202
  if gaussian_process_noise is not None:
203
- horovod_autotune_settings["autotune-gaussian-process-noise"] = (
204
- gaussian_process_noise
205
- )
203
+ horovod_autotune_settings[
204
+ "autotune-gaussian-process-noise"
205
+ ] = gaussian_process_noise
206
206
 
207
207
  self.set_envs(horovod_autotune_settings)
208
208
 
mlrun/runtimes/pod.py CHANGED
@@ -430,9 +430,9 @@ class KubeResourceSpec(FunctionSpec):
430
430
  )
431
431
  is None
432
432
  ):
433
- resources[resource_requirement][resource_type] = (
434
- default_resources[resource_requirement][resource_type]
435
- )
433
+ resources[resource_requirement][
434
+ resource_type
435
+ ] = default_resources[resource_requirement][resource_type]
436
436
  # This enables the user to define that no defaults would be applied on the resources
437
437
  elif resources == {}:
438
438
  return resources
mlrun/runtimes/serving.py CHANGED
@@ -523,9 +523,9 @@ class ServingRuntime(RemoteRuntime):
523
523
  function_object.metadata.tag = self.metadata.tag
524
524
 
525
525
  function_object.metadata.labels = function_object.metadata.labels or {}
526
- function_object.metadata.labels["mlrun/parent-function"] = (
527
- self.metadata.name
528
- )
526
+ function_object.metadata.labels[
527
+ "mlrun/parent-function"
528
+ ] = self.metadata.name
529
529
  function_object._is_child_function = True
530
530
  if not function_object.spec.graph:
531
531
  # copy the current graph only if the child doesnt have a graph of his own
@@ -345,9 +345,9 @@ class Spark3JobSpec(KubeResourceSpec):
345
345
  )
346
346
  is None
347
347
  ):
348
- resources[resource_requirement][resource_type] = (
349
- default_resources[resource_requirement][resource_type]
350
- )
348
+ resources[resource_requirement][
349
+ resource_type
350
+ ] = default_resources[resource_requirement][resource_type]
351
351
  else:
352
352
  resources = default_resources
353
353
 
mlrun/serving/remote.py CHANGED
@@ -21,7 +21,6 @@ import storey
21
21
  from storey.flow import _ConcurrentJobExecution
22
22
 
23
23
  import mlrun
24
- import mlrun.config
25
24
  from mlrun.errors import err_to_str
26
25
  from mlrun.utils import logger
27
26
 
@@ -174,8 +173,7 @@ class RemoteStep(storey.SendToHttp):
174
173
  if not self._session:
175
174
  self._session = mlrun.utils.HTTPSessionWithRetry(
176
175
  self.retries,
177
- self.backoff_factor
178
- or mlrun.config.config.http_retry_defaults.backoff_factor,
176
+ self.backoff_factor or mlrun.mlconf.http_retry_defaults.backoff_factor,
179
177
  retry_on_exception=False,
180
178
  retry_on_status=self.retries > 0,
181
179
  retry_on_post=True,
@@ -187,7 +185,7 @@ class RemoteStep(storey.SendToHttp):
187
185
  resp = self._session.request(
188
186
  method,
189
187
  url,
190
- verify=mlrun.config.config.httpdb.http.verify,
188
+ verify=False,
191
189
  headers=headers,
192
190
  data=body,
193
191
  timeout=self.timeout,
mlrun/utils/async_http.py CHANGED
@@ -139,9 +139,9 @@ class _CustomRequestContext(_RequestContext):
139
139
 
140
140
  # enrich user agent
141
141
  # will help traceability and debugging
142
- headers[aiohttp.hdrs.USER_AGENT] = (
143
- f"{aiohttp.http.SERVER_SOFTWARE} mlrun/{config.version}"
144
- )
142
+ headers[
143
+ aiohttp.hdrs.USER_AGENT
144
+ ] = f"{aiohttp.http.SERVER_SOFTWARE} mlrun/{config.version}"
145
145
 
146
146
  response: typing.Optional[
147
147
  aiohttp.ClientResponse
mlrun/utils/helpers.py CHANGED
@@ -1622,11 +1622,3 @@ def get_local_file_schema() -> List:
1622
1622
  # The expression `list(string.ascii_lowercase)` generates a list of lowercase alphabets,
1623
1623
  # which corresponds to drive letters in Windows file paths such as `C:/Windows/path`.
1624
1624
  return ["file"] + list(string.ascii_lowercase)
1625
-
1626
-
1627
- def is_safe_path(base, filepath, is_symlink=False):
1628
- # Avoid path traversal attacks by ensuring that the path is safe
1629
- resolved_filepath = (
1630
- os.path.abspath(filepath) if not is_symlink else os.path.realpath(filepath)
1631
- )
1632
- return base == os.path.commonpath((base, resolved_filepath))
mlrun/utils/http.py CHANGED
@@ -110,9 +110,9 @@ class HTTPSessionWithRetry(requests.Session):
110
110
  def request(self, method, url, **kwargs):
111
111
  retry_count = 0
112
112
  kwargs.setdefault("headers", {})
113
- kwargs["headers"]["User-Agent"] = (
114
- f"{requests.utils.default_user_agent()} mlrun/{config.version}"
115
- )
113
+ kwargs["headers"][
114
+ "User-Agent"
115
+ ] = f"{requests.utils.default_user_agent()} mlrun/{config.version}"
116
116
  while True:
117
117
  try:
118
118
  response = super().request(method, url, **kwargs)
mlrun/utils/logger.py CHANGED
@@ -186,7 +186,7 @@ class FormatterKinds(Enum):
186
186
  JSON = "json"
187
187
 
188
188
 
189
- def create_formatter_instance(formatter_kind: FormatterKinds) -> logging.Formatter:
189
+ def _create_formatter_instance(formatter_kind: FormatterKinds) -> logging.Formatter:
190
190
  return {
191
191
  FormatterKinds.HUMAN: HumanReadableFormatter(),
192
192
  FormatterKinds.HUMAN_EXTENDED: HumanReadableExtendedFormatter(),
@@ -208,7 +208,7 @@ def create_logger(
208
208
  logger_instance = Logger(level, name=name, propagate=False)
209
209
 
210
210
  # resolve formatter
211
- formatter_instance = create_formatter_instance(
211
+ formatter_instance = _create_formatter_instance(
212
212
  FormatterKinds(formatter_kind.lower())
213
213
  )
214
214
 
@@ -307,9 +307,9 @@ class NotificationPusher(_NotificationPusherBase):
307
307
  traceback=traceback.format_exc(),
308
308
  )
309
309
  update_notification_status_kwargs["reason"] = f"Exception error: {str(exc)}"
310
- update_notification_status_kwargs["status"] = (
311
- mlrun.common.schemas.NotificationStatus.ERROR
312
- )
310
+ update_notification_status_kwargs[
311
+ "status"
312
+ ] = mlrun.common.schemas.NotificationStatus.ERROR
313
313
  raise exc
314
314
  finally:
315
315
  self._update_notification_status(
@@ -356,9 +356,9 @@ class NotificationPusher(_NotificationPusherBase):
356
356
  traceback=traceback.format_exc(),
357
357
  )
358
358
  update_notification_status_kwargs["reason"] = f"Exception error: {str(exc)}"
359
- update_notification_status_kwargs["status"] = (
360
- mlrun.common.schemas.NotificationStatus.ERROR
361
- )
359
+ update_notification_status_kwargs[
360
+ "status"
361
+ ] = mlrun.common.schemas.NotificationStatus.ERROR
362
362
  raise exc
363
363
  finally:
364
364
  await mlrun.utils.helpers.run_in_threadpool(
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "2f7cf62583c4ef1f62a48781dbacbb13ec2cc373",
3
- "version": "1.6.2-rc3"
2
+ "git_commit": "80404fadf38217c0390793770297cb046629b439",
3
+ "version": "1.6.2-rc6"
4
4
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mlrun
3
- Version: 1.6.2rc3
3
+ Version: 1.6.2rc6
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
@@ -36,7 +36,7 @@ Requires-Dist: pyarrow <15,>=10.0
36
36
  Requires-Dist: pyyaml ~=5.1
37
37
  Requires-Dist: requests ~=2.31
38
38
  Requires-Dist: tabulate ~=0.8.6
39
- Requires-Dist: v3io ~=0.6.2
39
+ Requires-Dist: v3io ~=0.5.21
40
40
  Requires-Dist: pydantic >=1.10.8,~=1.10
41
41
  Requires-Dist: mergedeep ~=1.3
42
42
  Requires-Dist: v3io-frames ~=0.10.12
@@ -44,10 +44,10 @@ Requires-Dist: semver ~=3.0
44
44
  Requires-Dist: dependency-injector ~=4.41
45
45
  Requires-Dist: fsspec ==2023.9.2
46
46
  Requires-Dist: v3iofs ~=0.1.17
47
- Requires-Dist: storey ~=1.6.19
47
+ Requires-Dist: storey ~=1.6.18
48
48
  Requires-Dist: inflection ~=0.5.0
49
49
  Requires-Dist: python-dotenv ~=0.17.0
50
- Requires-Dist: setuptools ~=69.1
50
+ Requires-Dist: setuptools ~=68.2
51
51
  Requires-Dist: deprecated ~=1.2
52
52
  Requires-Dist: jinja2 >=3.1.3,~=3.1
53
53
  Requires-Dist: anyio ~=3.7
@@ -80,11 +80,12 @@ Requires-Dist: sqlalchemy ~=1.4 ; extra == 'all'
80
80
  Provides-Extra: api
81
81
  Requires-Dist: uvicorn ~=0.27.1 ; extra == 'api'
82
82
  Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'api'
83
- Requires-Dist: apscheduler <4,>=3.10.3 ; extra == 'api'
84
- Requires-Dist: objgraph ~=3.6 ; extra == 'api'
85
- Requires-Dist: igz-mgmt ~=0.1.0 ; extra == 'api'
86
- Requires-Dist: humanfriendly ~=10.0 ; extra == 'api'
87
- Requires-Dist: fastapi ~=0.110.0 ; extra == 'api'
83
+ Requires-Dist: apscheduler !=3.10.2,~=3.6 ; extra == 'api'
84
+ Requires-Dist: sqlite3-to-mysql ~=1.4 ; extra == 'api'
85
+ Requires-Dist: objgraph ~=3.5 ; extra == 'api'
86
+ Requires-Dist: igz-mgmt ~=0.0.10 ; extra == 'api'
87
+ Requires-Dist: humanfriendly ~=9.2 ; extra == 'api'
88
+ Requires-Dist: fastapi ~=0.103.2 ; extra == 'api'
88
89
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'api'
89
90
  Requires-Dist: pymysql ~=1.0 ; extra == 'api'
90
91
  Requires-Dist: alembic ~=1.9 ; extra == 'api'
@@ -126,7 +127,7 @@ Provides-Extra: complete-api
126
127
  Requires-Dist: adlfs ==2023.9.0 ; extra == 'complete-api'
127
128
  Requires-Dist: aiobotocore <2.8,>=2.5.0 ; extra == 'complete-api'
128
129
  Requires-Dist: alembic ~=1.9 ; extra == 'complete-api'
129
- Requires-Dist: apscheduler <4,>=3.10.3 ; extra == 'complete-api'
130
+ Requires-Dist: apscheduler !=3.10.2,~=3.6 ; extra == 'complete-api'
130
131
  Requires-Dist: avro ~=1.11 ; extra == 'complete-api'
131
132
  Requires-Dist: azure-core ~=1.24 ; extra == 'complete-api'
132
133
  Requires-Dist: azure-identity ~=1.5 ; extra == 'complete-api'
@@ -136,22 +137,23 @@ Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'complete-api'
136
137
  Requires-Dist: dask ~=2023.9.0 ; extra == 'complete-api'
137
138
  Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'complete-api'
138
139
  Requires-Dist: distributed ~=2023.9.0 ; extra == 'complete-api'
139
- Requires-Dist: fastapi ~=0.110.0 ; extra == 'complete-api'
140
+ Requires-Dist: fastapi ~=0.103.2 ; extra == 'complete-api'
140
141
  Requires-Dist: gcsfs ==2023.9.2 ; extra == 'complete-api'
141
142
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'complete-api'
142
143
  Requires-Dist: graphviz ~=0.20.0 ; extra == 'complete-api'
143
- Requires-Dist: humanfriendly ~=10.0 ; extra == 'complete-api'
144
- Requires-Dist: igz-mgmt ~=0.1.0 ; extra == 'complete-api'
144
+ Requires-Dist: humanfriendly ~=9.2 ; extra == 'complete-api'
145
+ Requires-Dist: igz-mgmt ~=0.0.10 ; extra == 'complete-api'
145
146
  Requires-Dist: kafka-python ~=2.0 ; extra == 'complete-api'
146
147
  Requires-Dist: mlflow ~=2.8 ; extra == 'complete-api'
147
148
  Requires-Dist: msrest ~=0.6.21 ; extra == 'complete-api'
148
- Requires-Dist: objgraph ~=3.6 ; extra == 'complete-api'
149
+ Requires-Dist: objgraph ~=3.5 ; extra == 'complete-api'
149
150
  Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'complete-api'
150
151
  Requires-Dist: pymysql ~=1.0 ; extra == 'complete-api'
151
152
  Requires-Dist: pyopenssl >=23 ; extra == 'complete-api'
152
153
  Requires-Dist: redis ~=4.3 ; extra == 'complete-api'
153
154
  Requires-Dist: s3fs ==2023.9.2 ; extra == 'complete-api'
154
155
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'complete-api'
156
+ Requires-Dist: sqlite3-to-mysql ~=1.4 ; extra == 'complete-api'
155
157
  Requires-Dist: timelength ~=1.1 ; extra == 'complete-api'
156
158
  Requires-Dist: uvicorn ~=0.27.1 ; extra == 'complete-api'
157
159
  Provides-Extra: dask
@@ -1,13 +1,13 @@
1
1
  mlrun/__init__.py,sha256=o9dHUfVFADfsi6GnOPLr2OkfkHdPvOnA7rkoECen0-I,7248
2
2
  mlrun/__main__.py,sha256=zd-o0SkFH69HhIWKhqXnNURsrtpIcOJYYq50JfAxW7k,49234
3
- mlrun/config.py,sha256=1XHLhXRfjAHRHvkX5Ld4tu88MK2LMS1F0UMZgo6I9Uk,62698
3
+ mlrun/config.py,sha256=Pbpwpf5bKdYmm5B6bZ-gYapkEXSHmJ5WFKjEQNzzv1s,61902
4
4
  mlrun/errors.py,sha256=YdUtkN3qJ6yrseNygmKxmSWOfQ_RdKBhRxwwyMlTQCM,7106
5
- mlrun/execution.py,sha256=tgp6PcujZvGhDDVzPNs32YH_JNzaxfSd25yeuLwmjzg,40880
5
+ mlrun/execution.py,sha256=Cro3Toh4oVHMFneTWHPFqoCmNm2rylrDdQWdqfswb1g,40878
6
6
  mlrun/features.py,sha256=UQQ2uh5Xh9XsMGiYBqh3bKgDhOHANjv1gQgWyId9qQE,15624
7
- mlrun/k8s_utils.py,sha256=-6egUEZNPhzOxJ2gFytubvQvCYU9nPPg5Yn0zsTK-NQ,7065
8
- mlrun/kfpops.py,sha256=VgvS_4DappCPHzV7057SbraBTbF2mn7zZ7iPAaks3KU,30493
7
+ mlrun/k8s_utils.py,sha256=-ICSVOB33ba7nnIrJuKIVpdA3vS21Lvn3i2aXzLu5Rw,6872
8
+ mlrun/kfpops.py,sha256=C55qXqIYnjmyIkduYVKyN8dLxq9la2urcUsSsE-qSdc,30137
9
9
  mlrun/lists.py,sha256=JMc4Ch4wQxD_B9zbrE3JZwXD8cCYWLqHb1FQXWoaGzM,8310
10
- mlrun/model.py,sha256=nFMMXwb3FG6qeXrtiPanLmzz64dTAcSzcQc4eQhbc40,63898
10
+ mlrun/model.py,sha256=CPfkjy303EAmathAUiewSksytDgqrnQykv4CKFjU78o,63655
11
11
  mlrun/render.py,sha256=_Jrtqw54AkvUZDWK5ORGUQWnGewREh_lQnUQWuCkTV4,13016
12
12
  mlrun/run.py,sha256=dxqkU82KuoCLKt54jvWrVcLLoWxhKgraxV0nCborOK4,42415
13
13
  mlrun/secrets.py,sha256=m7jM8fdjGLR-j9Vx-08eNmtOmlxFx9mTUBqBWtMSVQo,7782
@@ -24,16 +24,15 @@ mlrun/common/helpers.py,sha256=FqlMfRiZeGS6HZCOHaAJae2wDL1aRoijFBS5aZoPiIM,1108
24
24
  mlrun/common/secrets.py,sha256=vc8WV82EZsCB5ENjUkObFOzZP59aZ1w8F82PTnqwBnc,5181
25
25
  mlrun/common/types.py,sha256=V_jCEFCJZcycFVsPzEToCRQja5bqW0zRAAVaGN_QYxQ,790
26
26
  mlrun/common/db/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
27
- mlrun/common/db/sql_session.py,sha256=yS5KnE3FbOr3samz9tegSga4nd0JSv6azN0RIN9DGjk,2687
27
+ mlrun/common/db/sql_session.py,sha256=iWR8DWyziN2DSDiBgc5Wj3O7iVWDwfd0nJklAKwjoRM,2542
28
28
  mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ9sKhss10ld8A,721
29
- mlrun/common/model_monitoring/helpers.py,sha256=War8806vyMwdrQs2JkmPQ1DTPPUZ0DJ1B3jABiyRUe8,4249
30
- mlrun/common/schemas/__init__.py,sha256=JZZB7i513MJZUYQgEJ5KxMlTyEfvJJvWKyHB25meS5E,4718
29
+ mlrun/common/model_monitoring/helpers.py,sha256=S3VT3k2jonTNwr3xQ8Axt8dy3EwNV9z8RHEGw4d59Bc,4140
30
+ mlrun/common/schemas/__init__.py,sha256=rVaJGgeh0eX3u-i6fNUTlM94Ua6EvaDfbsnfVZZOD8c,4685
31
31
  mlrun/common/schemas/artifact.py,sha256=DaJYX54tq74nu2nBiAzRmGBkBYgtZiT-IKjQI11i8F4,2824
32
32
  mlrun/common/schemas/auth.py,sha256=7fNsGhDi1DV4WGuTNtEKXfq56SeCHjpRTed8YUj8m20,5978
33
33
  mlrun/common/schemas/background_task.py,sha256=TBFiqkEY8ffKcgIZ1eHtqWcqdD0dFr1YYWl-nOff2Jc,1714
34
34
  mlrun/common/schemas/client_spec.py,sha256=Vf8wgtQJUaNeaoIQ30ltR7bhXp1angxcJGgZKbzlci4,2809
35
35
  mlrun/common/schemas/clusterization_spec.py,sha256=aeaFJZms7r7h2HDv6ML_GDAT6gboW-PxBbc3GKPalGk,888
36
- mlrun/common/schemas/common.py,sha256=00upzVLPN7O511Q87yt-fvRcDQFbXra4j0_lqMGg6rs,1557
37
36
  mlrun/common/schemas/constants.py,sha256=UnnhyLeF-SSjy8KaV5a-TBw4Ws675gueYGiP1fr5NfU,6476
38
37
  mlrun/common/schemas/datastore_profile.py,sha256=hJ8q54A8VZKsnOvSIjcllj4MZ1bBhb_EmBgsqpwSF_Y,750
39
38
  mlrun/common/schemas/events.py,sha256=ROHJLo_fqYjc96pek7yhAUPpPRIuAR76lwxvNz8LIr8,1026
@@ -47,7 +46,7 @@ mlrun/common/schemas/memory_reports.py,sha256=O5ajjqSimTPl9nzlZg2ewRbddDXWgqUr-z
47
46
  mlrun/common/schemas/notification.py,sha256=nDKeLvJEl3hqekrLBBbbZ6v4WWe057Pyqws-1r6nBrU,1796
48
47
  mlrun/common/schemas/object.py,sha256=W735Gmu5D_x6LxNp1qsHMkhldjY5b_1H9QvAiiITRRc,1986
49
48
  mlrun/common/schemas/pipeline.py,sha256=tvpSHmXDR20uxWIHQ5KXf1zGKi1jaT5pDUIS26zJhLI,1184
50
- mlrun/common/schemas/project.py,sha256=E4kIlKdPNveYoZ87Cfv3QCsn0JdIgbZv26OrgNVKJNI,4305
49
+ mlrun/common/schemas/project.py,sha256=mTJPTRaf1cUI_obZY6O_tIrBC6u4pE6RJhIrwNE7nuU,4224
51
50
  mlrun/common/schemas/regex.py,sha256=8_vbDeAE0SODJDj7yUFg1FbaB9CNydYQTJ29JxE74Kc,776
52
51
  mlrun/common/schemas/runs.py,sha256=H9QhaN83cFUN42eE9TLgi1gs6Xdq11oQSZ96ESM94mI,745
53
52
  mlrun/common/schemas/runtime_resource.py,sha256=GyeqRwbBoLMq-0zWCkocvKl2nz9a62dAfguaPdqUzYw,1636
@@ -65,13 +64,13 @@ mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,613
65
64
  mlrun/data_types/spark.py,sha256=qKQ2TIAPQWDgmIOmpyV5_uuyUX3AnXWSq6GPpVjVIek,9457
66
65
  mlrun/data_types/to_pandas.py,sha256=uq7y1svEzaDaPg92YP3p3k3BDI48XWZ2bDdH6aJSvso,9991
67
66
  mlrun/datastore/__init__.py,sha256=bsRzu39UOocQAAl_nOKCbhxrZhWUEXrAc8WV3zs0VyI,4118
68
- mlrun/datastore/azure_blob.py,sha256=pnl7XITAxz7MMp7owgKWIM0nTMUlMCMvlqZW2fpKkus,8734
69
- mlrun/datastore/base.py,sha256=KN120uIJIkGdeZvG1gVZzbXH-BAgup3wrxpY4OQVz4A,24750
67
+ mlrun/datastore/azure_blob.py,sha256=zYHUN5WDvWje4f06GzLDlwJ__ePnjsckgSYbYJt8NF4,8728
68
+ mlrun/datastore/base.py,sha256=dNpBct2pcLtD2cqSCNCY3tnN-9qyyVeHoulzlcQiQlE,25614
70
69
  mlrun/datastore/datastore.py,sha256=xnK-zKrDwTkiZQgzLpcz8d629avpjYtU9UN3WZpdjww,8810
71
70
  mlrun/datastore/datastore_profile.py,sha256=vBpkAcnGiYUO09ihg_jPgPdpo2GVBrOOSHYWWttqBag,14899
72
71
  mlrun/datastore/dbfs_store.py,sha256=5IkxnFQXkW0fdx-ca5jjQnUdTsTfNdJzMvV31ZpDNrM,6634
73
72
  mlrun/datastore/filestore.py,sha256=cI_YvQqY5J3kEvdyPelfWofxKfBitoNHJvABBkpCGRc,3788
74
- mlrun/datastore/google_cloud_storage.py,sha256=zQlrZnYOFfwQNBw5J2ufoyCDMlbZKA9c9no7NvnylZ4,6038
73
+ mlrun/datastore/google_cloud_storage.py,sha256=aLquHqEULqYv4xnR4ELW_82fsVLWeecJiUMxsCVXfvE,6034
75
74
  mlrun/datastore/helpers.py,sha256=-bKveE9rteLd0hJd6OSMuMbfz09W_OXyu1G5O2ihZjs,622
76
75
  mlrun/datastore/inmem.py,sha256=6PAltUk7uyYlDgnsaJPOkg_P98iku1ys2e2wpAmPRkc,2779
77
76
  mlrun/datastore/redis.py,sha256=DDA1FsixfnzNwjVUU9MgVCKFo3X3tYvPDcREKyy9zS4,5517
@@ -82,13 +81,13 @@ mlrun/datastore/spark_utils.py,sha256=54rF64aC19ojUFCcwzsoBLQ-5Nmzs_KTQl9iEkK2hY
82
81
  mlrun/datastore/store_resources.py,sha256=dfMdFy2urilECtlwLJr5CSG12MA645b-NPYDnbr5s1A,6839
83
82
  mlrun/datastore/targets.py,sha256=EaeNzwHQHkMo7WRezgMeWWjTL1NmYwMx8F0RG1swb48,70159
84
83
  mlrun/datastore/utils.py,sha256=x4pm0gvpcNWSjxo99MOmwcd9I5HCwuzCh6IA4uiXlZs,7077
85
- mlrun/datastore/v3io.py,sha256=OyldGthdycuk7thQYHuCY-2XrGIef_14c2ReqgHh_7I,9188
84
+ mlrun/datastore/v3io.py,sha256=PJVPMUaIDopGKrmdp3vA7fRkoEoTnn-LNDduhDMZf5o,8303
86
85
  mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
87
86
  mlrun/datastore/wasbfs/fs.py,sha256=MnSj7Q4OKA2L55ihCmUnj2t3GA3B77oLMdAw-yxvN9w,6151
88
87
  mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
89
- mlrun/db/base.py,sha256=Rg2TrcwvzN28vmoyhq8sSxNjiBS1EA6BAHr24fhcmNU,18221
88
+ mlrun/db/base.py,sha256=vswrn0L8Uw9ab76E7R2JthpGm4GQTgGjXOPcm922Ojw,17646
90
89
  mlrun/db/factory.py,sha256=wTEKHEmdDkylM6IkTYvmEYVF8gn2HdjLoLoWICCyatI,2403
91
- mlrun/db/httpdb.py,sha256=LoQrSZZUijpRIYajz0A9qAbhwtT6Yg_H9488joRjqRs,155998
90
+ mlrun/db/httpdb.py,sha256=Db3975lpID_zg8NAHebsKWQL51TCy_ux0NuuLaUVGj4,155910
92
91
  mlrun/db/nopdb.py,sha256=rpZy5cpW-8--4OvMzlVoKNYjbhWJ3cn_z-JFwfuPqnI,14520
93
92
  mlrun/feature_store/__init__.py,sha256=n1F5m1svFW2chbE2dJdWzZJJiYS4E-y8PQsG9Q-F0lU,1584
94
93
  mlrun/feature_store/api.py,sha256=ehEwKlmE07pq1FUwh-ehA8Jm9LTkQofl5MQpEiMwVqM,49520
@@ -178,11 +177,11 @@ mlrun/frameworks/sklearn/model_handler.py,sha256=uV-SaCU15PW_S79syfrGxlpT9ZPjoKc
178
177
  mlrun/frameworks/sklearn/utils.py,sha256=Cg_pSxUMvKe8vBSLQor6JM8u9_ccKJg4Rk5EPDzTsVo,1209
179
178
  mlrun/frameworks/tf_keras/__init__.py,sha256=OQ5AQHJQAvz2hgansHV_B-yk3bJStWhqSoHlH4Qggqk,10459
180
179
  mlrun/frameworks/tf_keras/mlrun_interface.py,sha256=s4qUGdjEU8qpwPSj6H2Y5cB1b147vbbfpeF40q3iwKY,16671
181
- mlrun/frameworks/tf_keras/model_handler.py,sha256=lgYRBGIMg156XZ4-mqfvJU8MZVLrPzBn5b62WJ0_DDc,28269
180
+ mlrun/frameworks/tf_keras/model_handler.py,sha256=OazNSoAVjvja6yrfx9VL8FYfQjEurJExNYqEHvVaqIQ,28247
182
181
  mlrun/frameworks/tf_keras/model_server.py,sha256=JTOq5W1-g32VTAmAYTcJ_7nocReVI7pcU9PmFrTHD8A,9565
183
182
  mlrun/frameworks/tf_keras/utils.py,sha256=_QWk1YmdRybbUB54vsQFE2_WMuAK0g7eR1ozVbMk0Go,4284
184
183
  mlrun/frameworks/tf_keras/callbacks/__init__.py,sha256=ufH33gxHF4erP9RCiM8O2YaXLG6btLIU98gCS_MGFjI,844
185
- mlrun/frameworks/tf_keras/callbacks/logging_callback.py,sha256=W2kKnLO_Unn-yiNCRFz2359b6DzggSrfVpsUFyVt07k,21888
184
+ mlrun/frameworks/tf_keras/callbacks/logging_callback.py,sha256=dh6M9TiyeHnxHgBaU6-0tg0wa7E3plUJOm0yskanWK4,21886
186
185
  mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py,sha256=_9tF4KrSA2LKqE_uqwWMSHiRvNXPERwi8ABS96XqzNU,8791
187
186
  mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py,sha256=xxba28TyWyD8-Tr2Wcu8PzA8ZRNWKM_TbFxS2uF6g1E,28730
188
187
  mlrun/frameworks/xgboost/__init__.py,sha256=A3NTOcvEBX1DsWpzK6J-cS6KgV2vKrenf-DHMCuU26Q,10288
@@ -196,9 +195,9 @@ mlrun/launcher/factory.py,sha256=tk6foFWox7f_xaeTgkWTx9ht_5fv0XzLDR8ucdb8oTE,234
196
195
  mlrun/launcher/local.py,sha256=H0tN2Ex_mGCUtCyCSdk57mdXtFvl9eWDTVDwldv2SXQ,10927
197
196
  mlrun/launcher/remote.py,sha256=lcVV9nH_SMDsdb2XNg01EVnzZSxAMqxFGZJWxaezXeU,7487
198
197
  mlrun/model_monitoring/__init__.py,sha256=XaYyvWsIXpjJQ2gCPj8tFvfSbRSEEqgDtNz4tCE5H4g,915
199
- mlrun/model_monitoring/api.py,sha256=uKT733p3vUsIgX-vdvhbroeN15bmdkZT5S3gsfwbNhk,36829
198
+ mlrun/model_monitoring/api.py,sha256=hqw_eLHBfHqsw6SnFLQ0KPws0CDWMK5YZcHssKV-0kI,36815
200
199
  mlrun/model_monitoring/application.py,sha256=ilslJNkq3CCivPqvsDOPmu0UClWXwH9IWr58gdxM9iU,12292
201
- mlrun/model_monitoring/batch.py,sha256=l0FTSTt9frLgqeSS9jY8IU_0OwlvSevuZBWBgnBGH9A,43566
200
+ mlrun/model_monitoring/batch.py,sha256=XTvZ1N_CLt59LCZMQdlIZvx4aNfooaCpjqEqvJrCFcU,43532
202
201
  mlrun/model_monitoring/controller.py,sha256=a401c4noddXD64bYKD-VI8ULev3jU0wvlJwG0VGQgks,27989
203
202
  mlrun/model_monitoring/controller_handler.py,sha256=kG3sTjhKdsd9QcHkUlYcvw08yPsVQs9FyFdcKP9iaCo,977
204
203
  mlrun/model_monitoring/evidently_application.py,sha256=o9PsDsjyRfcbuC1X1gb2ww5nzWCsR_KheabtpxKZ5yY,4824
@@ -210,9 +209,9 @@ mlrun/model_monitoring/stream_processing.py,sha256=XdskWRBfA7a-gOO5IcmEjOZY0Xlse
210
209
  mlrun/model_monitoring/tracking_policy.py,sha256=Q6_p4y1ZcRHqs24c_1_4m9E1gYnaOm6pLCNGT22dWKM,5221
211
210
  mlrun/model_monitoring/writer.py,sha256=IWPzPenoAkfIxlvn0IdcdB19Nxqmg4mjbo3-RnYWw9A,8669
212
211
  mlrun/model_monitoring/stores/__init__.py,sha256=adU_G07jkD3JUT8__d0jAxs9nNomL7igKmd6uVM9L50,4525
213
- mlrun/model_monitoring/stores/kv_model_endpoint_store.py,sha256=R3Y8KmDHEFxJ2sHPUY2yMMC_mKOftFFIyQlIDduycv0,22338
212
+ mlrun/model_monitoring/stores/kv_model_endpoint_store.py,sha256=0ihslHyvS4jERS9L0aKJaNJYH7u0vc8v9h7HDfrb9s4,22298
214
213
  mlrun/model_monitoring/stores/model_endpoint_store.py,sha256=zqGVidq9Clym1l15ZltIZMCTdFuZ1QUwXxEAma9-4Hs,5695
215
- mlrun/model_monitoring/stores/sql_model_endpoint_store.py,sha256=3xsGAJfrpoS7nlkUk3xZrSkVmi_xhtq1D_PP5b3K1VY,16258
214
+ mlrun/model_monitoring/stores/sql_model_endpoint_store.py,sha256=UsCcOvi_lf1MsGA6VMUi9Hao0EHCXwhXGyD4E5aDDC4,16259
216
215
  mlrun/model_monitoring/stores/models/__init__.py,sha256=usKJhg-jD0YBmaE1advYiOn4QGUNkXK0jjJHXpA1L8U,1117
217
216
  mlrun/model_monitoring/stores/models/base.py,sha256=yC2_u8wTNoP9JHHewYQgWgarP400OgzlqYWpS-N1V4s,2801
218
217
  mlrun/model_monitoring/stores/models/mysql.py,sha256=9UYG5FuoVJQoAXP_xrCnbwmTVAm8ba6Bu54R9yg5BJs,1131
@@ -225,50 +224,50 @@ mlrun/package/packagers_manager.py,sha256=Ps34YUUPpYu0ZFFlWVrKCPk9YJzuMvMMiqxdau
225
224
  mlrun/package/packagers/__init__.py,sha256=rpxpuATMoxCMgHDaVamm0uwocy71e0CSXm85Q5X9tkU,769
226
225
  mlrun/package/packagers/default_packager.py,sha256=ecUaodnSfhKY3prigqALI61bj5WyyCM1xfhRNUHw5vc,26644
227
226
  mlrun/package/packagers/numpy_packagers.py,sha256=xLN7gaQG44J4NCnZ071F8uCO5U6bWSP5aALdL3KgqcQ,25621
228
- mlrun/package/packagers/pandas_packagers.py,sha256=YGVFVv6oR78M4GMhdLSnIyBXE5cDdqQAtmJYUxSDO88,35774
227
+ mlrun/package/packagers/pandas_packagers.py,sha256=0clr8klM24W1S2Q9H3mRt2r7gBR5M5Uqw96FmvHNP3E,35772
229
228
  mlrun/package/packagers/python_standard_library_packagers.py,sha256=BxVb4u3N_gAIky8SyW__OMqlZJb7WkQ-49Ag54nj7OQ,22335
230
229
  mlrun/package/utils/__init__.py,sha256=RXkhPH-zFLFFvOjMRJUVgVT33rusK5J4eTVLJ7bjN6k,1722
231
- mlrun/package/utils/_archiver.py,sha256=EK47v44yZOx2XeM4YGidgszsnrryz2J35f9M2A47bms,7951
230
+ mlrun/package/utils/_archiver.py,sha256=c5DU4WoMkLKwtUb_MbTiGqLudBZzc6nrelx-rFFgwDM,7757
232
231
  mlrun/package/utils/_formatter.py,sha256=EgdSMrJMgt-35myGuwfIOOKAe4jBi6QU7ssw1G0cacY,6393
233
232
  mlrun/package/utils/_pickler.py,sha256=cqqcSo2V0Ky086s-wLrJw0moD0XEU-DNOYefdRUHbPY,10354
234
233
  mlrun/package/utils/_supported_format.py,sha256=Svmfcqc4X7Kq-7pmyzGyI6PgDBaJ3zTT-au0beLZYS8,2375
235
234
  mlrun/package/utils/log_hint_utils.py,sha256=40B9WiMhpdL-FxunCvX1eQUk5EYTSU59o109RsAE4JQ,3710
236
235
  mlrun/package/utils/type_hint_utils.py,sha256=izsNrOrTnn_omK4BQPyBGWPtdTqFAdbS5cCJIDbHy0s,14857
237
236
  mlrun/platforms/__init__.py,sha256=ArWn_iZiEE6qz7hvY_1RqMkFnHGuKjP3k5xYKnfKA58,2352
238
- mlrun/platforms/iguazio.py,sha256=eOO8CbeSD0ooUKp-hbXbRfzWo5OTP7QaBo6zh0BXTKc,19379
237
+ mlrun/platforms/iguazio.py,sha256=VEYWOWmF-VLzzhRaupY8MuL44Aj0LwZtiZVI7OkB5oE,21782
239
238
  mlrun/platforms/other.py,sha256=z4pWqxXkVVuMLk-MbNb0Y_ZR5pmIsUm0R8vHnqpEnew,11852
240
239
  mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
241
240
  mlrun/projects/operations.py,sha256=CJRGKEFhqKXlg0VOKhcfjOUVAmWHA9WwAFNiXtUqBhg,18550
242
- mlrun/projects/pipelines.py,sha256=9VvLYV3bWU4t4zffpg9hauiYPBcwKmOwszgGttzDqCo,40189
243
- mlrun/projects/project.py,sha256=oOGvJfta2pEm7dvSaBnD1stOmcifv7TZ3FCmk1eVYg8,153138
241
+ mlrun/projects/pipelines.py,sha256=9H5X_XyeoMxYe25HtXA4gdXcXW65auX8CoR36czy7sI,39577
242
+ mlrun/projects/project.py,sha256=JuUvjznSS_ipl5bmBUOgTj3itrCyd_VyBHDkINLTYOA,151951
244
243
  mlrun/runtimes/__init__.py,sha256=f5cdEg4raKNXQawJE-AuWzK6AqIsLfDODREeMnI2Ies,7062
245
- mlrun/runtimes/base.py,sha256=GTVqCR3sBqbyAlEBnDClThOf0EZUoAMzlEIFqjfoyLQ,36604
244
+ mlrun/runtimes/base.py,sha256=saYKzFVh3phfA3ARHinla-JR8MJq9SBnGnj9yU66XwU,35699
246
245
  mlrun/runtimes/constants.py,sha256=tB7nIlHob3yF0K9Uf9BUZ8yxjZNSzlzrd3K32K_vV7w,9550
247
246
  mlrun/runtimes/daskjob.py,sha256=B74NfaO8MPczrEYtOd9TsvKMAReGYc1Q691u629DwVI,19161
248
247
  mlrun/runtimes/funcdoc.py,sha256=FHwnLfFzoD6yGlsAJXAl_3VTtudgg4fTrsw_XqLOkC0,10508
249
- mlrun/runtimes/function.py,sha256=zYIAW2BaihRA5GJdXwx48vdnGfqOzEHSuE28KAhZkG4,47368
248
+ mlrun/runtimes/function.py,sha256=azDiU0QDKVNSMP2lBTpVpxf-JgFaolD1xpIjKspBiDw,47362
250
249
  mlrun/runtimes/function_reference.py,sha256=SJ0J-4ww0FQdijmdnUwGUKhMb-h5wtzqCPItTWKIL40,4911
251
250
  mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
252
- mlrun/runtimes/kubejob.py,sha256=UfSm7hiPLAtM0TfIE5nbBdSvrbsKWCZfvKP-SZhGyAk,12500
253
- mlrun/runtimes/local.py,sha256=depdJkbyas7V7SMXB1T6Y_jPXxTLEB1TL5HYzDxlcXI,21791
251
+ mlrun/runtimes/kubejob.py,sha256=FYD_mv3XzgkcUStjn2jemV7FHJoHMvtzXzsYx_IK1kE,12387
252
+ mlrun/runtimes/local.py,sha256=OAGkcShFlxYXSPnJSAWe0MFxwrVdAvW7VP_Y-bycXQs,21767
254
253
  mlrun/runtimes/nuclio.py,sha256=hwk4dUaZefI-Qbb4s289vQpt1h0nAucxf6eINzVI-d8,2908
255
- mlrun/runtimes/pod.py,sha256=CBhKyNC20zCaRShS5UkgMR_61w_DpzEtEQ03T8J7u0k,56780
254
+ mlrun/runtimes/pod.py,sha256=73gXYggAdOW4uqRHQPVZy4PnvlS9t3x7qrygxXW2vl0,56778
256
255
  mlrun/runtimes/remotesparkjob.py,sha256=W7WqlPbyqE6FjOZ2EFeOzlL1jLGWAWe61jOH0Umy3F4,7334
257
- mlrun/runtimes/serving.py,sha256=bV4Io-8K30IZs69pdZTSICR3HkUAAc1kSKuBJOx_jc0,30331
256
+ mlrun/runtimes/serving.py,sha256=8hSHDrEqGlGpaHQr5JpDLfIA5ETVIddp2Zo2rkOi8mY,30329
258
257
  mlrun/runtimes/utils.py,sha256=mNVu3ejmfEV3d7-fCAiSaF5K-Jyz2ladc5HzqhsY0Cs,16025
259
258
  mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
260
259
  mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=Qr1tbLuGI9BhNXytfB0IbKuLLC0V_mtqrdwgvdQX36I,2250
261
260
  mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=aKEnzhYu6fDw5oZVte0oxS-oj0qXfKDpJ0rLSc8h7go,12761
262
261
  mlrun/runtimes/databricks_job/databricks_wrapper.py,sha256=-kzz5b3YBit6sGWojjREW_aHHRTx72zzTbxWGxvUplE,8679
263
262
  mlrun/runtimes/mpijob/__init__.py,sha256=jZf2uPBv6IB18Jj-dGSQ9NU5_xxni7XS4dnDZGwESFE,1583
264
- mlrun/runtimes/mpijob/abstract.py,sha256=BjPq4x5JMmzhZ0wx6rYYEHYk_OQUDkb2r4OnWSR10YU,9182
263
+ mlrun/runtimes/mpijob/abstract.py,sha256=KXPQKUPRz6Ttu7OMMfa9493p2OhueEFZtKkn-WgNebE,9178
265
264
  mlrun/runtimes/mpijob/v1.py,sha256=_RUlFo_3NcFf7x-QpUNVm8f7qNbRDIdUmPf_ijrv54U,3206
266
265
  mlrun/runtimes/mpijob/v1alpha1.py,sha256=w_971wwL03hW_ksgHJXdjTdjhxCs9KJ0zNqHSQ9whIM,1034
267
266
  mlrun/runtimes/sparkjob/__init__.py,sha256=_KPvk0qefeLtHO6lxQE_AMOGiMTG_OT48eRCE4Z2ldw,709
268
- mlrun/runtimes/sparkjob/spark3job.py,sha256=7dGrv3KWX7P4kmCCNHDYAPRAP0lZ9ndFbpuXuUR9JLI,40294
267
+ mlrun/runtimes/sparkjob/spark3job.py,sha256=kvzZUd9oGCJZoVc0VP57qvs05JVFvnVPwGnwzyOBv-I,40292
269
268
  mlrun/serving/__init__.py,sha256=_6HRAOuS2Ehjo3vwx5h1aI_-JppxEAsl4VfEERAbGFE,1078
270
269
  mlrun/serving/merger.py,sha256=PXLn3A21FiLteJHaDSLm5xKNT-80eTTjfHUJnBX1gKY,6116
271
- mlrun/serving/remote.py,sha256=od2kNSSS4AXVqJ8xCQUwylwrH6Ksk0OeGrbLCc9UztI,18114
270
+ mlrun/serving/remote.py,sha256=XtCgEY-azxcP0VUG1TupZXQ_dttPkAKIAtszW-GfGpQ,18038
272
271
  mlrun/serving/routers.py,sha256=VEeDhcQUeAeyREfaUN-ws7ZkxRw2wf9CKNWj-RUVemY,54988
273
272
  mlrun/serving/server.py,sha256=8iLMgRm-W61-_mTueQ0q2vt6blpnpl5-aTQa6dQ6zEA,21357
274
273
  mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
@@ -282,20 +281,20 @@ mlrun/track/tracker_manager.py,sha256=ZZzXtgQ-t4ah64XeAHNCbZ2VMOK_0E0RHv0pIowynj
282
281
  mlrun/track/trackers/__init__.py,sha256=9xft8YjJnblwqt8f05htmOt_eDzVBVQN07RfY_SYLCs,569
283
282
  mlrun/track/trackers/mlflow_tracker.py,sha256=zqqnECpxk_CHDKzEIdjwL9QUjXfueOw7xlZU7buguKY,23282
284
283
  mlrun/utils/__init__.py,sha256=g2pbT3loDw0GWELOC_rBq1NojSMCFnWrD-TYcDgAZiI,826
285
- mlrun/utils/async_http.py,sha256=N-zkACdr2CZNwYyMaocSR6ZH90F_WV_ZRBVe9ssi-Ns,11141
284
+ mlrun/utils/async_http.py,sha256=KyWRfVn-bznXzLkHElsCFDuOjM4H63M-MO6b1OoErgU,11139
286
285
  mlrun/utils/azure_vault.py,sha256=IbPAZh-7mp0j4PcCy1L079LuEA6ENrkWhKZvkD4lcTY,3455
287
286
  mlrun/utils/clones.py,sha256=QG2ka65-ysfrOaoziudEjJqGgAxJvFKZOXkiD9WZGN4,7386
288
287
  mlrun/utils/condition_evaluator.py,sha256=KFZC-apM7RU5TIlRszAzMFc0NqPj3W1rgP0Zv17Ud-A,1918
289
288
  mlrun/utils/db.py,sha256=fp9p2_z7XW3DhsceJEObWKh-e5zKjPiCM55kSGNkZD8,1658
290
- mlrun/utils/helpers.py,sha256=vA8av1xiw7DTEfG16oZdxt8YxVFtDU4jFDqykkZKvf8,53370
291
- mlrun/utils/http.py,sha256=BLkPfCmXwFrpPrPXzipmDr9IhY3q5css7hovncXYs9g,8735
292
- mlrun/utils/logger.py,sha256=3SS-9ON0ScnUJp1S6P_jmaTRXuwF6MhBF5a5Ij8s3IU,7158
289
+ mlrun/utils/helpers.py,sha256=v4sYB3uktju9yEUuA2z_2h-fwQAJ5_ADbY15Rql5ED0,53066
290
+ mlrun/utils/http.py,sha256=_3pJPuDPz7M9pU4uRN-NPUmCyaANCQsAWAIrlVLZPiY,8733
291
+ mlrun/utils/logger.py,sha256=3-oh9GMDCegObSo84rMYVb9W4nRBl5emZsVQTIZCM2I,7160
293
292
  mlrun/utils/regex.py,sha256=Nd7xnDHU9PEOsse6rFwLNVgU4AaYCyuwMmQ9qgx2-Vw,4581
294
293
  mlrun/utils/singleton.py,sha256=UUTQiBTXyzmjeYzsvTUsSxqyLJHOtesqif9GNfZO9rc,883
295
294
  mlrun/utils/v3io_clients.py,sha256=HL7Hma-pxaQBXMKcEnWqGLCpFgykwnszlabzeOHC9-E,1319
296
295
  mlrun/utils/vault.py,sha256=xUiKL17dCXjwQJ33YRzQj0oadUXATlFWPzKKYAESoQk,10447
297
296
  mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
298
- mlrun/utils/notifications/notification_pusher.py,sha256=HFk47IogAzrWuAS_h9hnF5barRKhmkNap1kOqlKmHJY,21810
297
+ mlrun/utils/notifications/notification_pusher.py,sha256=t0YEY-nVcFnZVTVVPbtudqCh_xxNZrEWbUb2bQ7NSbQ,21806
299
298
  mlrun/utils/notifications/notification/__init__.py,sha256=v2ULfsoGLlgBKS90ezou9wooBX7fo0NJgDsNdr51YEk,2113
300
299
  mlrun/utils/notifications/notification/base.py,sha256=t1sxExL2i2tJr3UuiQ9NTDONrpXcGBsrnxtAdemog2s,2293
301
300
  mlrun/utils/notifications/notification/console.py,sha256=leZrjwu3fFA1sCYsTxDXEGZ02SWTUk4GNzp7tT2uaCc,2532
@@ -304,11 +303,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=qrBmtECiRG6sZpCIVMg7RZc
304
303
  mlrun/utils/notifications/notification/slack.py,sha256=5JysqIpUYUZKXPSeeZtbl7qb2L9dj7p2NvnEBcEsZkA,3898
305
304
  mlrun/utils/notifications/notification/webhook.py,sha256=QHezCuN5uXkLcroAGxGrhGHaxAdUvkDLIsp27_Yrfd4,2390
306
305
  mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
307
- mlrun/utils/version/version.json,sha256=2dWT7X4oFhl7dz_DuSTIRRraAx9Wwamq91U317URAUk,88
306
+ mlrun/utils/version/version.json,sha256=jKe8BfJUv_zz9bQZmk1q0YYimyxUlid1hK2w1cBfiAY,88
308
307
  mlrun/utils/version/version.py,sha256=HMwseV8xjTQ__6T6yUWojx_z6yUj7Io7O4NcCCH_sz8,1970
309
- mlrun-1.6.2rc3.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
310
- mlrun-1.6.2rc3.dist-info/METADATA,sha256=YGh5nV9B1wTT03n0R6ndwIxpTnJ2yL1-hEJSko1AJ8s,18291
311
- mlrun-1.6.2rc3.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
312
- mlrun-1.6.2rc3.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
313
- mlrun-1.6.2rc3.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
314
- mlrun-1.6.2rc3.dist-info/RECORD,,
308
+ mlrun-1.6.2rc6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
309
+ mlrun-1.6.2rc6.dist-info/METADATA,sha256=i6dk3cATkydTfF-5yZzs8T7VxNOJ8BwJzz3dqEGHFO0,18417
310
+ mlrun-1.6.2rc6.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
311
+ mlrun-1.6.2rc6.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
312
+ mlrun-1.6.2rc6.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
313
+ mlrun-1.6.2rc6.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5