mlrun 1.9.0rc5__py3-none-any.whl → 1.9.0rc6__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/config.py CHANGED
@@ -79,7 +79,7 @@ default_config = {
79
79
  # comma separated list of images that are in the specified images_registry, and therefore will be enriched with this
80
80
  # registry when used. default to mlrun/* which means any image which is of the mlrun repository (mlrun/mlrun,
81
81
  # mlrun/ml-base, etc...)
82
- "images_to_enrich_registry": "^mlrun/*,python:3.9",
82
+ "images_to_enrich_registry": "^mlrun/*,^python:3.(9|11)$",
83
83
  "kfp_url": "",
84
84
  "kfp_ttl": "14400", # KFP ttl in sec, after that completed PODs will be deleted
85
85
  "kfp_image": "mlrun/mlrun-kfp", # image to use for KFP runner
@@ -286,7 +286,7 @@ default_config = {
286
286
  "remote": "mlrun/mlrun",
287
287
  "dask": "mlrun/ml-base",
288
288
  "mpijob": "mlrun/mlrun",
289
- "application": "python:3.9",
289
+ "application": "python",
290
290
  },
291
291
  # see enrich_function_preemption_spec for more info,
292
292
  # and mlrun.common.schemas.function.PreemptionModes for available options
@@ -255,7 +255,7 @@ class DatastoreProfileS3(DatastoreProfile):
255
255
  def check_bucket(cls, v):
256
256
  if not v:
257
257
  warnings.warn(
258
- "The 'bucket' attribute will be mandatory starting from version 1.9",
258
+ "The 'bucket' attribute will be mandatory starting from version 1.10",
259
259
  FutureWarning,
260
260
  stacklevel=2,
261
261
  )
@@ -360,7 +360,7 @@ class DatastoreProfileGCS(DatastoreProfile):
360
360
  def check_bucket(cls, v):
361
361
  if not v:
362
362
  warnings.warn(
363
- "The 'bucket' attribute will be mandatory starting from version 1.9",
363
+ "The 'bucket' attribute will be mandatory starting from version 1.10",
364
364
  FutureWarning,
365
365
  stacklevel=2,
366
366
  )
@@ -417,7 +417,7 @@ class DatastoreProfileAzureBlob(DatastoreProfile):
417
417
  def check_container(cls, v):
418
418
  if not v:
419
419
  warnings.warn(
420
- "The 'container' attribute will be mandatory starting from version 1.9",
420
+ "The 'container' attribute will be mandatory starting from version 1.10",
421
421
  FutureWarning,
422
422
  stacklevel=2,
423
423
  )
mlrun/db/httpdb.py CHANGED
@@ -939,7 +939,7 @@ class HTTPRunDB(RunDBInterface):
939
939
 
940
940
  :param name: Name of the run to retrieve.
941
941
  :param uid: Unique ID of the run, or a list of run UIDs.
942
- :param project: Project that the runs belongs to.
942
+ :param project: Project that the runs belongs to. If not specified, the default project will be used.
943
943
  :param labels: Filter runs by label key-value pairs or key existence. This can be provided as:
944
944
  - A dictionary in the format `{"label": "value"}` to match specific label key-value pairs,
945
945
  or `{"label": None}` to check for key existence.
@@ -12,8 +12,6 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- import json
16
- import posixpath
17
15
  import warnings
18
16
  from abc import ABC
19
17
  from tempfile import NamedTemporaryFile
@@ -60,7 +58,6 @@ except ModuleNotFoundError:
60
58
 
61
59
  if _HAS_EVIDENTLY:
62
60
  from evidently.core.report import Snapshot
63
- from evidently.legacy.ui.storage.local.base import METADATA_PATH, FSLocation
64
61
  from evidently.ui.workspace import (
65
62
  STR_UUID,
66
63
  CloudWorkspace,
@@ -100,14 +97,13 @@ class EvidentlyModelMonitoringApplicationBase(
100
97
  self.evidently_project_id = evidently_project_id
101
98
  self.evidently_project = self.load_project()
102
99
 
103
- def load_project(self) -> Project:
100
+ def load_project(self) -> "Project":
104
101
  """Load the Evidently project."""
105
102
  return self.evidently_workspace.get_project(self.evidently_project_id)
106
103
 
107
- def get_workspace(self) -> WorkspaceBase:
104
+ def get_workspace(self) -> "WorkspaceBase":
108
105
  """Get the Evidently workspace. Override this method for customize access to the workspace."""
109
106
  if self.evidently_workspace_path:
110
- self._log_location(self.evidently_workspace_path)
111
107
  return Workspace.create(self.evidently_workspace_path)
112
108
  else:
113
109
  raise MLRunValueError(
@@ -116,44 +112,10 @@ class EvidentlyModelMonitoringApplicationBase(
116
112
  "`EVIDENTLY_API_KEY` environment variable. In other cases, override this method."
117
113
  )
118
114
 
119
- def get_cloud_workspace(self) -> CloudWorkspace:
115
+ def get_cloud_workspace(self) -> "CloudWorkspace":
120
116
  """Load the Evidently cloud workspace according to the `EVIDENTLY_API_KEY` environment variable."""
121
117
  return CloudWorkspace()
122
118
 
123
- @staticmethod
124
- def _log_location(evidently_workspace_path):
125
- # TODO remove function + usage after solving issue ML-9530
126
- location = FSLocation(base_path=evidently_workspace_path)
127
- location.invalidate_cache("")
128
- paths = [p for p in location.listdir("") if location.isdir(p)]
129
-
130
- for path in paths:
131
- metadata_path = posixpath.join(path, METADATA_PATH)
132
- full_path = posixpath.join(location.path, metadata_path)
133
- print(f"evidently json issue, working on path: {full_path}")
134
- try:
135
- with location.open(metadata_path) as f:
136
- content = json.load(f)
137
- print(
138
- f"evidently json issue, successful load path: {full_path}, content: {content}"
139
- )
140
- except FileNotFoundError:
141
- print(f"evidently json issue, path not found: {full_path}")
142
- continue
143
- except json.decoder.JSONDecodeError as json_error:
144
- print(
145
- f"evidently json issue, path got json error, path:{full_path}, error: {json_error}"
146
- )
147
- print("evidently json issue, file content:")
148
- with location.open(metadata_path) as f:
149
- print(f.read())
150
- continue
151
- except Exception as error:
152
- print(
153
- f"evidently json issue, path got general error, path:{full_path}, error: {error}"
154
- )
155
- continue
156
-
157
119
  @staticmethod
158
120
  def log_evidently_object(
159
121
  monitoring_context: mm_context.MonitoringApplicationContext,
mlrun/projects/project.py CHANGED
@@ -470,7 +470,8 @@ def get_or_create_project(
470
470
  parameters: Optional[dict] = None,
471
471
  allow_cross_project: Optional[bool] = None,
472
472
  ) -> "MlrunProject":
473
- """Load a project from MLRun DB, or create/import if it does not exist
473
+ """Load a project from MLRun DB, or create/import if it does not exist.
474
+ The project will become the default project for the current session.
474
475
 
475
476
  MLRun looks for a project.yaml file with project definition and objects in the project root path
476
477
  and use it to initialize the project, in addition it runs the project_setup.py file (if it exists)
@@ -4002,8 +4003,10 @@ class MlrunProject(ModelObj):
4002
4003
  e.g. builder_env={"GIT_TOKEN": token}, does not work yet in KFP
4003
4004
  :param overwrite_build_params: Overwrite existing build configuration (currently applies to
4004
4005
  requirements and commands)
4006
+
4005
4007
  * False: The new params are merged with the existing
4006
4008
  * True: The existing params are replaced by the new ones
4009
+
4007
4010
  :param extra_args: A string containing additional builder arguments in the format of command-line options,
4008
4011
  e.g. extra_args="--skip-tls-verify --build-arg A=val"
4009
4012
  :param force_build: force building the image, even when no changes were made
@@ -4054,8 +4057,10 @@ class MlrunProject(ModelObj):
4054
4057
  :param requirements_file: requirements file to install on the built image
4055
4058
  :param overwrite_build_params: Overwrite existing build configuration (currently applies to
4056
4059
  requirements and commands)
4060
+
4057
4061
  * False: The new params are merged with the existing
4058
4062
  * True: The existing params are replaced by the new ones
4063
+
4059
4064
  :param builder_env: Kaniko builder pod env vars dict (for config/credentials)
4060
4065
  e.g. builder_env={"GIT_TOKEN": token}, does not work yet in KFP
4061
4066
  :param extra_args: A string containing additional builder arguments in the format of command-line options,
@@ -4127,8 +4132,10 @@ class MlrunProject(ModelObj):
4127
4132
  e.g. builder_env={"GIT_TOKEN": token}, does not work yet in KFP
4128
4133
  :param overwrite_build_params: Overwrite existing build configuration (currently applies to
4129
4134
  requirements and commands)
4135
+
4130
4136
  * False: The new params are merged with the existing
4131
4137
  * True: The existing params are replaced by the new ones
4138
+
4132
4139
  :param extra_args: A string containing additional builder arguments in the format of command-line options,
4133
4140
  e.g. extra_args="--skip-tls-verify --build-arg A=val"
4134
4141
  :param target_dir: Path on the image where source code would be extracted (by default `/home/mlrun_code`)
@@ -4306,12 +4313,14 @@ class MlrunProject(ModelObj):
4306
4313
  ``my_Name_1`` or ``surname``.
4307
4314
  :param tag: Return artifacts assigned this tag.
4308
4315
  :param labels: Filter artifacts by label key-value pairs or key existence. This can be provided as:
4309
- - A dictionary in the format `{"label": "value"}` to match specific label key-value pairs,
4310
- or `{"label": None}` to check for key existence.
4311
- - A list of strings formatted as `"label=value"` to match specific label key-value pairs,
4312
- or just `"label"` for key existence.
4313
- - A comma-separated string formatted as `"label1=value1,label2"` to match entities with
4314
- the specified key-value pairs or key existence.
4316
+
4317
+ - A dictionary in the format `{"label": "value"}` to match specific label key-value pairs,
4318
+ or `{"label": None}` to check for key existence.
4319
+ - A list of strings formatted as `"label=value"` to match specific label key-value pairs,
4320
+ or just `"label"` for key existence.
4321
+ - A comma-separated string formatted as `"label1=value1,label2"` to match entities with
4322
+ the specified key-value pairs or key existence.
4323
+
4315
4324
  :param since: Not in use in :py:class:`HTTPRunDB`.
4316
4325
  :param until: Not in use in :py:class:`HTTPRunDB`.
4317
4326
  :param iter: Return artifacts from a specific iteration (where ``iter=0`` means the root iteration). If
@@ -4453,12 +4462,14 @@ class MlrunProject(ModelObj):
4453
4462
  ``my_Name_1`` or ``surname``.
4454
4463
  :param tag: Return artifacts assigned this tag.
4455
4464
  :param labels: Filter model artifacts by label key-value pairs or key existence. This can be provided as:
4456
- - A dictionary in the format `{"label": "value"}` to match specific label key-value pairs,
4457
- or `{"label": None}` to check for key existence.
4458
- - A list of strings formatted as `"label=value"` to match specific label key-value pairs,
4459
- or just `"label"` for key existence.
4460
- - A comma-separated string formatted as `"label1=value1,label2"` to match entities with
4461
- the specified key-value pairs or key existence.
4465
+
4466
+ - A dictionary in the format `{"label": "value"}` to match specific label key-value pairs,
4467
+ or `{"label": None}` to check for key existence.
4468
+ - A list of strings formatted as `"label=value"` to match specific label key-value pairs,
4469
+ or just `"label"` for key existence.
4470
+ - A comma-separated string formatted as `"label1=value1,label2"` to match entities with
4471
+ the specified key-value pairs or key existence.
4472
+
4462
4473
  :param since: Not in use in :py:class:`HTTPRunDB`.
4463
4474
  :param until: Not in use in :py:class:`HTTPRunDB`.
4464
4475
  :param iter: Return artifacts from a specific iteration (where ``iter=0`` means the root iteration). If
@@ -4564,12 +4575,14 @@ class MlrunProject(ModelObj):
4564
4575
  :param name: Return only functions with a specific name.
4565
4576
  :param tag: Return function versions with specific tags. To return only tagged functions, set tag to ``"*"``.
4566
4577
  :param labels: Filter functions by label key-value pairs or key existence. This can be provided as:
4567
- - A dictionary in the format `{"label": "value"}` to match specific label key-value pairs,
4568
- or `{"label": None}` to check for key existence.
4569
- - A list of strings formatted as `"label=value"` to match specific label key-value pairs,
4570
- or just `"label"` for key existence.
4571
- - A comma-separated string formatted as `"label1=value1,label2"` to match entities with
4572
- the specified key-value pairs or key existence.
4578
+
4579
+ - A dictionary in the format `{"label": "value"}` to match specific label key-value pairs,
4580
+ or `{"label": None}` to check for key existence.
4581
+ - A list of strings formatted as `"label=value"` to match specific label key-value pairs,
4582
+ or just `"label"` for key existence.
4583
+ - A comma-separated string formatted as `"label1=value1,label2"` to match entities with
4584
+ the specified key-value pairs or key existence.
4585
+
4573
4586
  :param kind: Return functions of the specified kind. If not provided, all function kinds will be returned.
4574
4587
  :param format_: The format in which to return the functions. Default is 'full'.
4575
4588
  :returns: List of function objects.
@@ -4663,12 +4676,14 @@ class MlrunProject(ModelObj):
4663
4676
  :param name: Return only functions with a specific name.
4664
4677
  :param tag: Return function versions with specific tags.
4665
4678
  :param labels: Filter functions by label key-value pairs or key existence. This can be provided as:
4666
- - A dictionary in the format `{"label": "value"}` to match specific label key-value pairs,
4667
- or `{"label": None}` to check for key existence.
4668
- - A list of strings formatted as `"label=value"` to match specific label key-value pairs,
4669
- or just `"label"` for key existence.
4670
- - A comma-separated string formatted as `"label1=value1,label2"` to match entities with
4671
- the specified key-value pairs or key existence.
4679
+
4680
+ - A dictionary in the format `{"label": "value"}` to match specific label key-value pairs,
4681
+ or `{"label": None}` to check for key existence.
4682
+ - A list of strings formatted as `"label=value"` to match specific label key-value pairs,
4683
+ or just `"label"` for key existence.
4684
+ - A comma-separated string formatted as `"label1=value1,label2"` to match entities with
4685
+ the specified key-value pairs or key existence.
4686
+
4672
4687
  :returns: List of function objects.
4673
4688
  """
4674
4689
 
@@ -4724,12 +4739,14 @@ class MlrunProject(ModelObj):
4724
4739
  :param name: Name of the run to retrieve.
4725
4740
  :param uid: Unique ID of the run.
4726
4741
  :param labels: Filter runs by label key-value pairs or key existence. This can be provided as:
4727
- - A dictionary in the format `{"label": "value"}` to match specific label key-value pairs,
4728
- or `{"label": None}` to check for key existence.
4729
- - A list of strings formatted as `"label=value"` to match specific label key-value pairs,
4730
- or just `"label"` for key existence.
4731
- - A comma-separated string formatted as `"label1=value1,label2"` to match entities with
4732
- the specified key-value pairs or key existence.
4742
+
4743
+ - A dictionary in the format `{"label": "value"}` to match specific label key-value pairs,
4744
+ or `{"label": None}` to check for key existence.
4745
+ - A list of strings formatted as `"label=value"` to match specific label key-value pairs,
4746
+ or just `"label"` for key existence.
4747
+ - A comma-separated string formatted as `"label1=value1,label2"` to match entities with
4748
+ the specified key-value pairs or key existence.
4749
+
4733
4750
  :param state: Deprecated - List only runs whose state is specified.
4734
4751
  :param states: List only runs whose state is one of the provided states.
4735
4752
  :param sort: Whether to sort the result according to their start time. Otherwise, results will be
mlrun/run.py CHANGED
@@ -637,7 +637,7 @@ def code_to_function(
637
637
  - databricks: run code on Databricks cluster (python scripts, Spark etc.)
638
638
  - application: run a long living application (e.g. a web server, UI, etc.)
639
639
 
640
- Learn more about [Kinds of function (runtimes)](../concepts/functions-overview.html).
640
+ Learn more about :doc:`../../concepts/functions-overview`
641
641
 
642
642
  :param name: function name, typically best to use hyphen-case
643
643
  :param project: project used to namespace the function, defaults to 'default'
mlrun/runtimes/mounts.py CHANGED
@@ -352,10 +352,12 @@ def auto_mount(
352
352
  """Choose the mount based on env variables and params
353
353
 
354
354
  Volume will be selected by the following order:
355
+
355
356
  - k8s PVC volume when both pvc_name and volume_mount_path are set
356
357
  - k8s PVC volume when env var is set: MLRUN_PVC_MOUNT=<pvc-name>:<mount-path>
357
358
  - k8s PVC volume if it's configured as the auto mount type
358
359
  - iguazio v3io volume when V3IO_ACCESS_KEY and V3IO_USERNAME env vars are set
360
+
359
361
  """
360
362
  if pvc_name and volume_mount_path:
361
363
  return mount_pvc(
mlrun/utils/helpers.py CHANGED
@@ -876,13 +876,18 @@ def enrich_image_url(
876
876
  client_version: Optional[str] = None,
877
877
  client_python_version: Optional[str] = None,
878
878
  ) -> str:
879
+ image_url = image_url.strip()
880
+
881
+ # Add python version tag if needed
882
+ if image_url == "python" and client_python_version:
883
+ image_url = f"python:{client_python_version}"
884
+
879
885
  client_version = _convert_python_package_version_to_image_tag(client_version)
880
886
  server_version = _convert_python_package_version_to_image_tag(
881
887
  mlrun.utils.version.Version().get()["version"]
882
888
  )
883
- image_url = image_url.strip()
884
889
  mlrun_version = config.images_tag or client_version or server_version
885
- tag = mlrun_version
890
+ tag = mlrun_version or ""
886
891
 
887
892
  # TODO: Remove condition when mlrun/mlrun-kfp image is also supported
888
893
  if "mlrun-kfp" not in image_url:
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "6a74fb2c76fb2f1f30c94f16336a8df6e14d5ed4",
3
- "version": "1.9.0-rc5"
2
+ "git_commit": "14c1fb848211e99e3116d81b3f5c3c3a1e63ca12",
3
+ "version": "1.9.0-rc6"
4
4
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mlrun
3
- Version: 1.9.0rc5
3
+ Version: 1.9.0rc6
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
@@ -35,7 +35,7 @@ Requires-Dist: pyarrow<17,>=10.0
35
35
  Requires-Dist: pyyaml<7,>=6.0.2
36
36
  Requires-Dist: requests~=2.32
37
37
  Requires-Dist: tabulate~=0.8.6
38
- Requires-Dist: v3io~=0.6.9
38
+ Requires-Dist: v3io~=0.7.0
39
39
  Requires-Dist: pydantic>=1.10.15
40
40
  Requires-Dist: mergedeep~=1.3
41
41
  Requires-Dist: v3io-frames~=0.10.14; python_version < "3.11"
@@ -52,7 +52,7 @@ 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
54
  Requires-Dist: mlrun-pipelines-kfp-common~=0.4.3
55
- Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.4.2
55
+ Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.4.3
56
56
  Requires-Dist: docstring_parser~=0.16
57
57
  Requires-Dist: aiosmtplib~=3.0
58
58
  Provides-Extra: s3
@@ -118,7 +118,7 @@ Requires-Dist: timelength~=1.1; extra == "api"
118
118
  Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "api"
119
119
  Requires-Dist: aiosmtplib~=3.0; extra == "api"
120
120
  Requires-Dist: pydantic<2,>=1; extra == "api"
121
- Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.4.2; extra == "api"
121
+ Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.4.3; extra == "api"
122
122
  Requires-Dist: grpcio~=1.70.0; extra == "api"
123
123
  Provides-Extra: all
124
124
  Requires-Dist: adlfs==2023.9.0; extra == "all"
@@ -212,7 +212,7 @@ Requires-Dist: igz-mgmt~=0.4.1; extra == "complete-api"
212
212
  Requires-Dist: kafka-python~=2.1.0; extra == "complete-api"
213
213
  Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "complete-api"
214
214
  Requires-Dist: mlflow~=2.16; extra == "complete-api"
215
- Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.4.2; extra == "complete-api"
215
+ Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.4.3; extra == "complete-api"
216
216
  Requires-Dist: msrest~=0.6.21; extra == "complete-api"
217
217
  Requires-Dist: objgraph~=3.6; extra == "complete-api"
218
218
  Requires-Dist: oss2==2.18.1; extra == "complete-api"
@@ -1,6 +1,6 @@
1
1
  mlrun/__init__.py,sha256=Cqm9U9eCEdLpMejhU2BEhubu0mHL71igJJIwYa738EA,7450
2
2
  mlrun/__main__.py,sha256=ktsoMxLmW65ABu5oG7TbUJvusyAYy_PRollQOGj4cGY,46352
3
- mlrun/config.py,sha256=vtSLphtZPN-5LwVy6Vojff3lFlivGx1SCP3kv9kX-N4,71930
3
+ mlrun/config.py,sha256=z4lQ_2rDthIHY368AMrbrMWIosAepIdfHfoER8Wf3bE,71933
4
4
  mlrun/errors.py,sha256=LkcbXTLANGdsgo2CRX2pdbyNmt--lMsjGv0XZMgP-Nc,8222
5
5
  mlrun/execution.py,sha256=rss4zA5M9tOCnSaXrK_-_BQ5F5DfF9OzesgQliq7jvQ,50008
6
6
  mlrun/features.py,sha256=ReBaNGsBYXqcbgI012n-SO_j6oHIbk_Vpv0CGPXbUmo,15842
@@ -8,7 +8,7 @@ mlrun/k8s_utils.py,sha256=-RmKAlSBo_qVeJa1bIiwi6TUyuEpb4AhF7wIQ_H5ZJ0,8909
8
8
  mlrun/lists.py,sha256=-nbmqScRia0v2IdSHt6Pd0fLRLSEtdB9bSxyD92BWvs,8562
9
9
  mlrun/model.py,sha256=5YedJfY9La867fhW8sZJdWb4FwyXPR1r1C5SqYyB4_w,85864
10
10
  mlrun/render.py,sha256=5DlhD6JtzHgmj5RVlpaYiHGhX84Q7qdi4RCEUj2UMgw,13195
11
- mlrun/run.py,sha256=7qN26s5t-kQ4sLPRIDbZWEVaJPjidC9-2HTN6CbICLI,45150
11
+ mlrun/run.py,sha256=vEgESyKS6mwl6L4qtU71HtoaVQSzbxQguJESGdndyEc,45122
12
12
  mlrun/secrets.py,sha256=dZPdkc_zzfscVQepOHUwmzFqnBavDCBXV9DQoH_eIYM,7800
13
13
  mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
14
14
  mlrun/alerts/alert.py,sha256=QQFZGydQbx9RvAaSiaH-ALQZVcDKQX5lgizqj_rXW2k,15948
@@ -86,7 +86,7 @@ mlrun/datastore/alibaba_oss.py,sha256=k-OHVe08HjMewlkpsT657CbOiVFAfSq9_EqhCE-k86
86
86
  mlrun/datastore/azure_blob.py,sha256=SzAcHYSXkm8Zpopz2Ea-rWVClH0URocUazcNK04S9W0,12776
87
87
  mlrun/datastore/base.py,sha256=9R3lwB_L4hv5WW2q24WS62_KTh-wO4UG6pwzISZU6bM,26231
88
88
  mlrun/datastore/datastore.py,sha256=AXXPgHpSG8Ig1RtTDGfdCJu4UT-AQPC43FGBOptIVOg,9484
89
- mlrun/datastore/datastore_profile.py,sha256=JIH7GYlC40pdaqO8xwYp52dO8QFEB8le021kFINFh4k,23862
89
+ mlrun/datastore/datastore_profile.py,sha256=ywIFYRzMWgb510GuRBDhsJvUbkPENl2qUDQbIBifuWE,23865
90
90
  mlrun/datastore/dbfs_store.py,sha256=QkDRzwFnvm7CgEg4NuGxes6tBgKDyhX0CiBUvK8c9pk,6568
91
91
  mlrun/datastore/filestore.py,sha256=OcykjzhbUAZ6_Cb9bGAXRL2ngsOpxXSb4rR0lyogZtM,3773
92
92
  mlrun/datastore/google_cloud_storage.py,sha256=MnToY6irdhBZ8Wcapqnr1Yq2724LAh2uPO7MAtdWfUY,8716
@@ -110,7 +110,7 @@ mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
110
110
  mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
111
111
  mlrun/db/base.py,sha256=lfPEPUBXPdmzXUhFD0hDBBWXdV7HXfcsz9Gj_AMLllg,30819
112
112
  mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
113
- mlrun/db/httpdb.py,sha256=U_cOZjfWOcSH_V0kFgVO7NI458_OVzthGC_36-l7zZ8,232781
113
+ mlrun/db/httpdb.py,sha256=AxfZuJQJl8yGv9rt2pPOPMrDik3bZ73gbdyEfeEZvyM,232833
114
114
  mlrun/db/nopdb.py,sha256=ttC1pe95rZdMgiLG9kzrjZFYB1gWj3SEqeqK5c0q0w4,27197
115
115
  mlrun/feature_store/__init__.py,sha256=SlI845bWt6xX34SXunHHqhmFAR9-5v2ak8N-qpcAPGo,1328
116
116
  mlrun/feature_store/api.py,sha256=qKj5Tk6prTab6XWatWhBuPRVp0eJEctoxRMN2wz48vA,32168
@@ -232,7 +232,7 @@ mlrun/model_monitoring/applications/context.py,sha256=VfyPCIdO4z73uqFcJs87jzSI4P
232
232
  mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=2qgfFmrpHf-x0_EaHD-0T28piwSQzw-HH71aV1GwbZs,15389
233
233
  mlrun/model_monitoring/applications/results.py,sha256=_qmj6TWT0SR2bi7gUyRKBU418eGgGoLW2_hTJ7S-ock,5782
234
234
  mlrun/model_monitoring/applications/evidently/__init__.py,sha256=-DqdPnBSrjZhFvKOu_Ie3MiFvlur9sPTZpZ1u0_1AE8,690
235
- mlrun/model_monitoring/applications/evidently/base.py,sha256=LYYtbP4uwfIE5QyQofFUoeSQPXx8QnncVbV-gspn1WA,7371
235
+ mlrun/model_monitoring/applications/evidently/base.py,sha256=shH9YwuFrGNWy1IDAbv622l-GE4o1z_u1bqhqTyTHDA,5661
236
236
  mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJCZFKcS7FM,644
237
237
  mlrun/model_monitoring/db/_schedules.py,sha256=RWn4wtKsIXg668gMLpxO9I8GlkxvPSaA5y7w-wFDcgE,9048
238
238
  mlrun/model_monitoring/db/_stats.py,sha256=VVMWLMqG3Us3ozBkLaokJF22Ewv8WKmVE1-OvS_g9vA,6943
@@ -271,7 +271,7 @@ mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13
271
271
  mlrun/projects/__init__.py,sha256=0Krf0WIKfnZa71WthYOg0SoaTodGg3sV_hK3f_OlTPI,1220
272
272
  mlrun/projects/operations.py,sha256=9ntpM8WnnyRk1iCY0NDKW-3aR4j2QZPSJM0SdMnsQKs,20032
273
273
  mlrun/projects/pipelines.py,sha256=wud7ezeEmhIJvfYE_wzQbA4ygEfGXHtbOtoOpan6poY,48556
274
- mlrun/projects/project.py,sha256=ehmUH4XzZHYFZV1hKFGCI0lJkSyPz9Xlx69DaVRhcAI,236625
274
+ mlrun/projects/project.py,sha256=O3oeg5ZZLvsvftN_T6syB1xQJ7e1eFg37mrlIaL4VCY,237075
275
275
  mlrun/runtimes/__init__.py,sha256=J9Sy2HiyMlztNv6VUurMzF5H2XzttNil8nRsWDsqLyg,8923
276
276
  mlrun/runtimes/base.py,sha256=K-38p2HYSpaPcenJgEzQqLlLVFxfwLu2Bwe9oXGWCTM,37853
277
277
  mlrun/runtimes/daskjob.py,sha256=JwuGvOiPsxEDHHMMUS4Oie4hLlYYIZwihAl6DjroTY0,19521
@@ -280,7 +280,7 @@ mlrun/runtimes/function_reference.py,sha256=fnMKUEieKgy4JyVLhFpDtr6JvKgOaQP8F_K2
280
280
  mlrun/runtimes/generators.py,sha256=X8NDlCEPveDDPOHtOGcSpbl3pAVM3DP7fuPj5xVhxEY,7290
281
281
  mlrun/runtimes/kubejob.py,sha256=xt6NyPiIiPYmGDFtTe4RHF-zhrFdgwcnRr2NQEBB5NI,8799
282
282
  mlrun/runtimes/local.py,sha256=yedo3R1c46cB1mX7aOz8zORXswQPvX86U-_fYxXoqTY,22717
283
- mlrun/runtimes/mounts.py,sha256=pGQlnsNTUxAhFMWLS_53E784z-IH9a6oQjKjSp1gbJE,18733
283
+ mlrun/runtimes/mounts.py,sha256=2dkoktm3TXHe4XHmRhvC0UfvWzq2vy_13MeaW7wgyPo,18735
284
284
  mlrun/runtimes/pod.py,sha256=kjnDKOQKqfmprzA3tbXhaB58Dp6So4cOApcjYZ3kVko,67691
285
285
  mlrun/runtimes/remotesparkjob.py,sha256=dod99nqz3GdRfmnBoQKfwFCXTetfuCScd2pKH3HJyoY,7394
286
286
  mlrun/runtimes/utils.py,sha256=VFKA7dWuILAcJGia_7Pw_zBBG00wZlat7o2N6u5EItw,16284
@@ -322,7 +322,7 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
322
322
  mlrun/utils/clones.py,sha256=yXOeuLtgIiKZdmjeKK0Z_vIrH19ds5JuoJaCeDjhwOo,7516
323
323
  mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
324
324
  mlrun/utils/db.py,sha256=blQgkWMfFH9lcN4sgJQcPQgEETz2Dl_zwbVA0SslpFg,2186
325
- mlrun/utils/helpers.py,sha256=-LSn2EaNYY_CCmq7ZeMSwDeeOphfHwBqqLepDgE0e00,76867
325
+ mlrun/utils/helpers.py,sha256=w1dRGvgVuv8KX9aFhduWIOULv1yRZOMxFCLwN_LBQmk,77024
326
326
  mlrun/utils/http.py,sha256=t6FrXQstZm9xVVjxqIGiLzrwZNCR4CSienSOuVgNIcI,8706
327
327
  mlrun/utils/logger.py,sha256=RG0m1rx6gfkJ-2C1r_p41MMpPiaDYqaYM2lYHDlNZEU,14767
328
328
  mlrun/utils/regex.py,sha256=jbR7IiOp6OO0mg9Fl_cVZCpWb9fL9nTPONCUxCDNWXg,5201
@@ -341,11 +341,11 @@ mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAq
341
341
  mlrun/utils/notifications/notification/slack.py,sha256=eQvmctTh6wIG5xVOesLLV9S1-UUCu5UEQ9JIJOor3ts,7183
342
342
  mlrun/utils/notifications/notification/webhook.py,sha256=zxh8CAlbPnTazsk6r05X5TKwqUZVOH5KBU2fJbzQlG4,5330
343
343
  mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
344
- mlrun/utils/version/version.json,sha256=OlZUXnU_KyG3vBh08cT1btNcwSLphLQbgBeODZ5MYMU,88
344
+ mlrun/utils/version/version.json,sha256=LKT4ldQefqC3t14kvaT3JzTQYEXo11UmMlAxApIfid4,88
345
345
  mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
346
- mlrun-1.9.0rc5.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
347
- mlrun-1.9.0rc5.dist-info/METADATA,sha256=Urv_Cm8eAa_QvlvKvyfL3KaB7v4X_rh2B5vFx59gfMk,25708
348
- mlrun-1.9.0rc5.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
349
- mlrun-1.9.0rc5.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
350
- mlrun-1.9.0rc5.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
351
- mlrun-1.9.0rc5.dist-info/RECORD,,
346
+ mlrun-1.9.0rc6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
347
+ mlrun-1.9.0rc6.dist-info/METADATA,sha256=TNNIE4xOpafcCHH1kRgORVUmANiLhs0toZ71XjnHYP0,25708
348
+ mlrun-1.9.0rc6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
349
+ mlrun-1.9.0rc6.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
350
+ mlrun-1.9.0rc6.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
351
+ mlrun-1.9.0rc6.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.7.1)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5