mlrun 1.7.0rc29__py3-none-any.whl → 1.7.0rc30__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/constants.py CHANGED
@@ -11,7 +11,6 @@
11
11
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
- #
15
14
 
16
15
  IMAGE_NAME_ENRICH_REGISTRY_PREFIX = "." # prefix for image name to enrich with registry
17
16
  MLRUN_SERVING_CONF = "serving-conf"
@@ -70,6 +69,7 @@ class MLRunInternalLabels:
70
69
  job_type = "job-type"
71
70
  kind = "kind"
72
71
  component = "component"
72
+ mlrun_type = "mlrun__type"
73
73
 
74
74
  owner = "owner"
75
75
  v3io_user = "v3io_user"
@@ -37,6 +37,7 @@ class ArtifactFormat(ObjectFormat, mlrun.common.types.StrEnum):
37
37
  "spec.db_key",
38
38
  "spec.size",
39
39
  "spec.framework",
40
+ "spec.algorithm",
40
41
  "spec.metrics",
41
42
  "spec.target_path",
42
43
  ]
@@ -17,6 +17,7 @@ from dataclasses import dataclass
17
17
  from enum import Enum, IntEnum
18
18
  from typing import Optional
19
19
 
20
+ import mlrun.common.constants
20
21
  import mlrun.common.helpers
21
22
  from mlrun.common.types import StrEnum
22
23
 
@@ -354,7 +355,7 @@ class ResultStatusApp(IntEnum):
354
355
 
355
356
 
356
357
  class ModelMonitoringAppLabel:
357
- KEY = "mlrun__type"
358
+ KEY = mlrun.common.constants.MLRunInternalLabels.mlrun_type
358
359
  VAL = "mlrun__model-monitoring-application"
359
360
 
360
361
  def __str__(self) -> str:
@@ -377,3 +378,6 @@ class PredictionsQueryConstants:
377
378
 
378
379
  class SpecialApps:
379
380
  MLRUN_INFRA = "mlrun-infra"
381
+
382
+
383
+ _RESERVED_FUNCTION_NAMES = MonitoringFunctionNames.list() + [SpecialApps.MLRUN_INFRA]
@@ -126,6 +126,7 @@ class ProjectSummary(pydantic.BaseModel):
126
126
  pipelines_completed_recent_count: typing.Optional[int] = None
127
127
  pipelines_failed_recent_count: typing.Optional[int] = None
128
128
  pipelines_running_count: typing.Optional[int] = None
129
+ updated: typing.Optional[datetime.datetime] = None
129
130
 
130
131
 
131
132
  class IguazioProject(pydantic.BaseModel):
mlrun/config.py CHANGED
@@ -108,7 +108,12 @@ default_config = {
108
108
  # max number of parallel abort run jobs in runs monitoring
109
109
  "concurrent_abort_stale_runs_workers": 10,
110
110
  "list_runs_time_period_in_days": 7, # days
111
- }
111
+ },
112
+ "projects": {
113
+ "summaries": {
114
+ "cache_interval": "30",
115
+ },
116
+ },
112
117
  },
113
118
  "crud": {
114
119
  "runs": {
@@ -437,7 +442,6 @@ default_config = {
437
442
  "followers": "",
438
443
  # This is used as the interval for the sync loop both when mlrun is leader and follower
439
444
  "periodic_sync_interval": "1 minute",
440
- "counters_cache_ttl": "2 minutes",
441
445
  "project_owners_cache_ttl": "30 seconds",
442
446
  # access key to be used when the leader is iguazio and polling is done from it
443
447
  "iguazio_access_key": "",
mlrun/datastore/base.py CHANGED
@@ -215,6 +215,11 @@ class DataStore:
215
215
  raise mlrun.errors.MLRunInvalidArgumentError(
216
216
  "When providing start_time or end_time, must provide time_column"
217
217
  )
218
+ if start_time and end_time and start_time.tzinfo != end_time.tzinfo:
219
+ raise mlrun.errors.MLRunInvalidArgumentError(
220
+ "start_time and end_time must have the same time zone"
221
+ )
222
+
218
223
  if start_time or end_time or additional_filters:
219
224
  partitions_time_attributes = find_partitions(url, file_system)
220
225
  set_filters(
@@ -232,13 +237,17 @@ class DataStore:
232
237
  ):
233
238
  raise ex
234
239
 
235
- # TODO: fix timezone issue (ML-6308)
236
- if start_time.tzinfo:
237
- start_time_inner = start_time.replace(tzinfo=None)
238
- end_time_inner = end_time.replace(tzinfo=None)
239
- else:
240
- start_time_inner = start_time.replace(tzinfo=pytz.utc)
241
- end_time_inner = end_time.replace(tzinfo=pytz.utc)
240
+ start_time_inner = None
241
+ if start_time:
242
+ start_time_inner = start_time.replace(
243
+ tzinfo=None if start_time.tzinfo else pytz.utc
244
+ )
245
+
246
+ end_time_inner = None
247
+ if end_time:
248
+ end_time_inner = end_time.replace(
249
+ tzinfo=None if end_time.tzinfo else pytz.utc
250
+ )
242
251
 
243
252
  set_filters(
244
253
  partitions_time_attributes,
@@ -569,10 +569,10 @@ def _create_model_monitoring_function_base(
569
569
  "please use `ModelMonitoringApplicationBaseV2`. It will be removed in 1.9.0.",
570
570
  FutureWarning,
571
571
  )
572
- if name in mm_constants.MonitoringFunctionNames.list():
572
+ if name in mm_constants._RESERVED_FUNCTION_NAMES:
573
573
  raise mlrun.errors.MLRunInvalidArgumentError(
574
- f"An application cannot have the following names: "
575
- f"{mm_constants.MonitoringFunctionNames.list()}"
574
+ "An application cannot have the following names: "
575
+ f"{mm_constants._RESERVED_FUNCTION_NAMES}"
576
576
  )
577
577
  if func is None:
578
578
  func = ""
mlrun/run.py CHANGED
@@ -639,7 +639,7 @@ def code_to_function(
639
639
  :param requirements: a list of python packages
640
640
  :param requirements_file: path to a python requirements file
641
641
  :param categories: list of categories for mlrun Function Hub, defaults to None
642
- :param labels: immutable name/value pairs to tag the function with useful metadata, defaults to None
642
+ :param labels: name/value pairs dict to tag the function with useful metadata, defaults to None
643
643
  :param with_doc: indicates whether to document the function parameters, defaults to True
644
644
  :param ignored_tags: notebook cells to ignore when converting notebooks to py code (separated by ';')
645
645
 
mlrun/runtimes/base.py CHANGED
@@ -674,7 +674,7 @@ class BaseRuntime(ModelObj):
674
674
  selector="",
675
675
  hyper_param_options: HyperParamOptions = None,
676
676
  inputs: dict = None,
677
- outputs: dict = None,
677
+ outputs: list = None,
678
678
  workdir: str = "",
679
679
  artifact_path: str = "",
680
680
  image: str = "",
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "3c23888a9d9d88d792dcc5ebebff5fe242fde9a1",
3
- "version": "1.7.0-rc29"
2
+ "git_commit": "2ee0dccf5b2439fd82f6ff80d51479bfd27d076d",
3
+ "version": "1.7.0-rc30"
4
4
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mlrun
3
- Version: 1.7.0rc29
3
+ Version: 1.7.0rc30
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 <15,>=10.0
35
35
  Requires-Dist: pyyaml <7,>=5.4.1
36
36
  Requires-Dist: requests ~=2.31
37
37
  Requires-Dist: tabulate ~=0.8.6
38
- Requires-Dist: v3io ~=0.6.4
38
+ Requires-Dist: v3io ~=0.6.6
39
39
  Requires-Dist: pydantic <1.10.15,>=1.10.8
40
40
  Requires-Dist: mergedeep ~=1.3
41
41
  Requires-Dist: v3io-frames ~=0.10.14
@@ -50,8 +50,8 @@ Requires-Dist: setuptools ~=69.1
50
50
  Requires-Dist: deprecated ~=1.2
51
51
  Requires-Dist: jinja2 >=3.1.3,~=3.1
52
52
  Requires-Dist: orjson <4,>=3.9.15
53
- Requires-Dist: mlrun-pipelines-kfp-common ~=0.1.2
54
- Requires-Dist: mlrun-pipelines-kfp-v1-8 ~=0.1.2
53
+ Requires-Dist: mlrun-pipelines-kfp-common ~=0.1.3
54
+ Requires-Dist: mlrun-pipelines-kfp-v1-8 ~=0.1.3
55
55
  Provides-Extra: alibaba-oss
56
56
  Requires-Dist: ossfs ==2023.12.0 ; extra == 'alibaba-oss'
57
57
  Requires-Dist: oss2 ==2.18.1 ; extra == 'alibaba-oss'
@@ -1,6 +1,6 @@
1
1
  mlrun/__init__.py,sha256=y08M1JcKXy5-9_5WaI9fn5aV5BxIQ5QkbduJK0OxWbA,7470
2
2
  mlrun/__main__.py,sha256=iAifncsrQQx6ozXXmz7GH1OiNl8PA7KS3TnwlxnHGeo,45890
3
- mlrun/config.py,sha256=dvp_VezfkokDF_38mLsSo9fwYo3E6F4C8JlichFj4nk,65054
3
+ mlrun/config.py,sha256=a7Z_OWF9X4nw61l0ZElFEG95RnpwXCb2SQziHivm4L8,65123
4
4
  mlrun/errors.py,sha256=VpC_imeSz2twRMZZb7u90Zj29z6aO-tCxUHD3ZA_Axw,7465
5
5
  mlrun/execution.py,sha256=StasIZWmnbRjXDn5d7VU6DWu1fs_AJQckSiUKlSYL9M,42021
6
6
  mlrun/features.py,sha256=m17K_3l9Jktwb9dOwlHLTAPTlemsWrRF7dJhXUX0iJU,15429
@@ -8,7 +8,7 @@ mlrun/k8s_utils.py,sha256=WdUajadvAhTR7sAMQdwFqKeJMimuTyqm02VdwK1A4xU,7023
8
8
  mlrun/lists.py,sha256=3PqBdcajdwhTe1XuFsAaHTuFVM2kjwepf31qqE82apg,8384
9
9
  mlrun/model.py,sha256=rkwDmPyg0Q8ZUTaOCNthyf-wsmTHNa4QG_hPyMVm-GQ,73448
10
10
  mlrun/render.py,sha256=n8SeY3ogVrsV02-7-H0lt1RmpkxGpbI-11RQx61Vq9E,13267
11
- mlrun/run.py,sha256=kFbSzHjJEMTtaUYIWWztlKdKpFDRINnbFlR-HFZT_O8,42891
11
+ mlrun/run.py,sha256=mSRHCmya2q8rK9Hs6iVKcV2ek9k2ULckVuVHViYQZUo,42886
12
12
  mlrun/secrets.py,sha256=ibtCK79u7JVBZF6F0SP1-xXXF5MyrLEUs_TCWiJAnlc,7798
13
13
  mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
14
14
  mlrun/alerts/alert.py,sha256=JJfMFF-o0j8oTAIkyXAQG0YbU-kZlIDl0A8ILQi8vfA,6510
@@ -20,14 +20,14 @@ mlrun/artifacts/manager.py,sha256=I_1mgQ0M8j9JgryFJsB2yN3Pv47oQM6Jfg1fotTPDX0,15
20
20
  mlrun/artifacts/model.py,sha256=ObUkqFMejYOtq0CDFdpYwzwhQ5bsHv0dHTysuVPJnbs,21102
21
21
  mlrun/artifacts/plots.py,sha256=dS0mHGt1b20tN2JyEH9H5o5I0oMKZkzn3Uz_3Hf4WjU,4813
22
22
  mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
23
- mlrun/common/constants.py,sha256=Qfuw2qJdBANp54A3OdKtbUWcQEQeATL9-qLVBhuwGBk,3023
23
+ mlrun/common/constants.py,sha256=MdXxRPquVguW98WCnEUcJ9A46MOo-MrafFTk7QOK8BA,3052
24
24
  mlrun/common/helpers.py,sha256=LRIULbCg8afKkPnzsZ99-B-JPVjcwR1G9vO--1rzRrQ,1387
25
25
  mlrun/common/secrets.py,sha256=vc8WV82EZsCB5ENjUkObFOzZP59aZ1w8F82PTnqwBnc,5181
26
26
  mlrun/common/types.py,sha256=cs8AtoI6LSuf2LF5Hg2ZSQ0QTex5_KqVSmNAU8_rnlk,1037
27
27
  mlrun/common/db/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
28
28
  mlrun/common/db/sql_session.py,sha256=Znc8KE2oLy4lg3_vRki1sVlNx59TgDSOTCXfU561hBU,2659
29
29
  mlrun/common/formatters/__init__.py,sha256=91yPb5xoLK7fTIOC5C7ndJMvyEBlQY6f0CjenLYbsZw,785
30
- mlrun/common/formatters/artifact.py,sha256=rwMSedrkcNz6XVHhyuxVqfFTnHNrT2XU8hg42VVKvwE,1363
30
+ mlrun/common/formatters/artifact.py,sha256=t4LmoWCFjPJ_YzzQCC2aMJwOeeLi84le979m6OTRyoM,1401
31
31
  mlrun/common/formatters/base.py,sha256=LHwWWnQJCmvlnOCCmG8YtJ_xzs0xBI8PujYDL5Ky9H4,4101
32
32
  mlrun/common/formatters/function.py,sha256=fGa5m5aI_XvQdvrUr73dmUwrEJrE_8wM4_P4q8RgBTg,1477
33
33
  mlrun/common/formatters/pipeline.py,sha256=hGUV_3wcTEMa-JouspbjgJ1JGKa2Wc5cXSaH2XhOdMc,1763
@@ -59,7 +59,7 @@ mlrun/common/schemas/notification.py,sha256=Ge7eWNGf_XUFkjOnUkyUOubdEbmXh9z_OSGc
59
59
  mlrun/common/schemas/object.py,sha256=VleJSUmDJMl92knLgaDE8SWCi3ky0UaHcwcwOIapPQ8,1980
60
60
  mlrun/common/schemas/pagination.py,sha256=q7nk6bipkDiE7HExIVqhy5ANl-zv0x8QC9Kg6AkLtDA,887
61
61
  mlrun/common/schemas/pipeline.py,sha256=MhH07_fAQXNAnmf5j6oXZp8qh9cxGcZlReMdt-ZJf40,1429
62
- mlrun/common/schemas/project.py,sha256=YVmnF187RjVaD0RYcw8hZuk7g_sv9grSv-K9R4cjDhw,4885
62
+ mlrun/common/schemas/project.py,sha256=jETPmrjUeNJPEcLKIFaXhEbkm2lhU43vE8tAdY_Qdg0,4940
63
63
  mlrun/common/schemas/regex.py,sha256=8_vbDeAE0SODJDj7yUFg1FbaB9CNydYQTJ29JxE74Kc,776
64
64
  mlrun/common/schemas/runs.py,sha256=yGGJxSHT_Mq4RLjlfuxW4pm9i-Py9eOsGUAofs_VqVM,1268
65
65
  mlrun/common/schemas/runtime_resource.py,sha256=2rSuYL-9JkESSomlnU91mYDbfV-IkqZeXx6OHuMmDxs,1554
@@ -68,7 +68,7 @@ mlrun/common/schemas/secret.py,sha256=51tCN1F8DFTq4y_XdHIMDy3I1TnMEBX8kO8BHKavYF
68
68
  mlrun/common/schemas/tag.py,sha256=OAn9Qt6z8ibqw8uU8WQSvuwY8irUv45Dhx2Ko5FzUss,884
69
69
  mlrun/common/schemas/workflow.py,sha256=eRoaOBFiWbvP0iwZ6Aof5JmheV81A0-0PGi8L4vuXmI,1823
70
70
  mlrun/common/schemas/model_monitoring/__init__.py,sha256=Z_tv5dO-tT_oHMSk98AnDQW0XM-fXqNKduFxkW3jO_E,1809
71
- mlrun/common/schemas/model_monitoring/constants.py,sha256=ZRdZ0NBAcB8UBX751PZTK0lYCnoGZDTzl2wAH1dZ3X0,9763
71
+ mlrun/common/schemas/model_monitoring/constants.py,sha256=izIN1HUF_rWpbxVR2AYXGww-Noq9rnx2k7zOvrRt7Js,9921
72
72
  mlrun/common/schemas/model_monitoring/grafana.py,sha256=SG13MFUUz_tk6-mWeSx17qcdEW4ekicxqNtnMSwRTCY,1559
73
73
  mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=3wPlCFNoBsHlCMgyJlXfNP-ZqIRsBXzyBX79O2PHkeg,13799
74
74
  mlrun/data_types/__init__.py,sha256=EkxfkFoHb91zz3Aymq-KZfCHlPMzEc3bBqgzPUwmHWY,1087
@@ -79,7 +79,7 @@ mlrun/data_types/to_pandas.py,sha256=_QLSxMn9MPlXxcu1Ki_slzZx2eJbWJzrGvBR7_K-wcQ
79
79
  mlrun/datastore/__init__.py,sha256=pQQI_Vi7H45Bbe6f9JaF8dOgtGWf3qY9_kd8NNTfaog,4093
80
80
  mlrun/datastore/alibaba_oss.py,sha256=OfQ9AbsJNBFF9DFgUdq38TvKw6qwnHmEcnH-nze6ZZg,4827
81
81
  mlrun/datastore/azure_blob.py,sha256=T0IzgBQJxcv8c97VJ1KDayvo_dkxLlgQboa7vcx1WEk,9077
82
- mlrun/datastore/base.py,sha256=aZOlBxJizs-YkvZ_zNuvT0_V4uax28zi6CiQ91sWC2o,25511
82
+ mlrun/datastore/base.py,sha256=1HDFJBAdYZUDFowwG_OiUeM6CXAgVaKula2QyLoJQiM,25800
83
83
  mlrun/datastore/datastore.py,sha256=vbawdOBXr4qjj8lvFxrd1PmHNIis45UWFcbvJ7S6hN8,9215
84
84
  mlrun/datastore/datastore_profile.py,sha256=9g467ic1vuTP_HY101mMXG_smnLxkjhuBp6dR4_LIkg,18937
85
85
  mlrun/datastore/dbfs_store.py,sha256=5IkxnFQXkW0fdx-ca5jjQnUdTsTfNdJzMvV31ZpDNrM,6634
@@ -211,7 +211,7 @@ mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,233
211
211
  mlrun/launcher/local.py,sha256=pP9-ZrNL8OnNDEiXTAKAZQnmLpS_mCc2v-mJw329eks,11269
212
212
  mlrun/launcher/remote.py,sha256=tGICSfWtvUHeR31mbzy6gqHejmDxjPUgjtxXTWhRubg,7699
213
213
  mlrun/model_monitoring/__init__.py,sha256=dm5_j0_pwqrdzFwTaEtGnKfv2nVpNaM56nBI-oqLbNU,879
214
- mlrun/model_monitoring/api.py,sha256=9GjhaOQqt53ezlH0VG2iLvb5t8YE7bBAuiJGXXt52wI,27828
214
+ mlrun/model_monitoring/api.py,sha256=WMxB4MMrsturFwyr1G1CHOddt0d_VSYcNEobjuxkjHg,27815
215
215
  mlrun/model_monitoring/application.py,sha256=RJ8HeAPfGO3P2A_dEZYNg60c1wKTADh2YSv8BQ5embg,745
216
216
  mlrun/model_monitoring/controller.py,sha256=MQ4BF3vfJSyYZv6HuTuSLt_nqaflgBYyOSwCccbwaio,27981
217
217
  mlrun/model_monitoring/controller_handler.py,sha256=J9Y9ppLsQaxyYRl21165Rr7QuI9EM-mk-5veAqs4Bi0,1336
@@ -278,7 +278,7 @@ mlrun/projects/operations.py,sha256=Y-NwrIFXpltUXcDLDQ9b33NY_r4TOPvJgO4F-xSuzoM,
278
278
  mlrun/projects/pipelines.py,sha256=Xc9tQSBBPEg1Yxn-b4RseFdfO7SvrYC-ekdw_hAcPH8,40006
279
279
  mlrun/projects/project.py,sha256=r_7_wPYNxkJUUZ0X_tOKzxTN5kn4vdKXK0Z6FMfGhr8,183253
280
280
  mlrun/runtimes/__init__.py,sha256=0-tYDkew-Cr4DM-wztvMbzDA5xq385Jjo-GrtO_84Sc,8741
281
- mlrun/runtimes/base.py,sha256=yw5SceU2Js1AOr4f0ByZ3l1VsZUAnKKeC41DRTmNi68,37633
281
+ mlrun/runtimes/base.py,sha256=g716uF0BpL6vLe75bNqpJ2SjtYW_tQqICl46d_4ljHs,37633
282
282
  mlrun/runtimes/daskjob.py,sha256=JfK8rSPY-0SYnLJdtp_ts3oKyad0pA98th-2VntYzK0,19387
283
283
  mlrun/runtimes/funcdoc.py,sha256=CC9cWRPgBiM2sk4NJTqusjc6O9kZ-49vGA5WRPjREKE,9796
284
284
  mlrun/runtimes/function_reference.py,sha256=iWKRe4r2GTc5S8FOIASYUNLwwne8NqIui51PFr8Q4mg,4918
@@ -344,11 +344,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=ZtVL30B_Ha0VGoo4LxO-voT
344
344
  mlrun/utils/notifications/notification/slack.py,sha256=wqpFGr5BTvFO5KuUSzFfxsgmyU1Ohq7fbrGeNe9TXOk,7006
345
345
  mlrun/utils/notifications/notification/webhook.py,sha256=y8Hc3rlR48M2W76lfI2knEBxlD_T6k9P9kXD_vqFnfg,4472
346
346
  mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
347
- mlrun/utils/version/version.json,sha256=xlFBNbnsq7BOx6HdePGss8ZM1One7QqCiZemT0r2eEQ,89
347
+ mlrun/utils/version/version.json,sha256=0oyQ89ttk4NJ1n_SJz3Y_28WTi9lcWPjIag3LRdOz6w,89
348
348
  mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
349
- mlrun-1.7.0rc29.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
350
- mlrun-1.7.0rc29.dist-info/METADATA,sha256=HoHebuF98M2r2vMAVKCKU_UUzvLOYG2-J-tTbI_2KuQ,19534
351
- mlrun-1.7.0rc29.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
352
- mlrun-1.7.0rc29.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
353
- mlrun-1.7.0rc29.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
354
- mlrun-1.7.0rc29.dist-info/RECORD,,
349
+ mlrun-1.7.0rc30.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
350
+ mlrun-1.7.0rc30.dist-info/METADATA,sha256=Oa4QRKtVfxP-8cDhj1mjXknBVHpVmf8MWWaNlB3QwlU,19534
351
+ mlrun-1.7.0rc30.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
352
+ mlrun-1.7.0rc30.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
353
+ mlrun-1.7.0rc30.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
354
+ mlrun-1.7.0rc30.dist-info/RECORD,,