mlrun 1.7.0rc6__py3-none-any.whl → 1.7.0rc7__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 (59) hide show
  1. mlrun/common/constants.py +6 -0
  2. mlrun/common/schemas/__init__.py +2 -0
  3. mlrun/common/schemas/model_monitoring/__init__.py +4 -0
  4. mlrun/common/schemas/model_monitoring/constants.py +35 -18
  5. mlrun/common/schemas/project.py +1 -0
  6. mlrun/common/types.py +7 -1
  7. mlrun/config.py +11 -4
  8. mlrun/data_types/data_types.py +4 -0
  9. mlrun/datastore/alibaba_oss.py +130 -0
  10. mlrun/datastore/azure_blob.py +4 -5
  11. mlrun/datastore/base.py +22 -16
  12. mlrun/datastore/datastore.py +4 -0
  13. mlrun/datastore/google_cloud_storage.py +1 -1
  14. mlrun/datastore/sources.py +2 -3
  15. mlrun/db/base.py +14 -6
  16. mlrun/db/httpdb.py +61 -56
  17. mlrun/db/nopdb.py +3 -0
  18. mlrun/model.py +1 -0
  19. mlrun/model_monitoring/__init__.py +1 -1
  20. mlrun/model_monitoring/api.py +104 -295
  21. mlrun/model_monitoring/controller.py +25 -25
  22. mlrun/model_monitoring/db/__init__.py +16 -0
  23. mlrun/model_monitoring/{stores → db/stores}/__init__.py +43 -34
  24. mlrun/model_monitoring/db/stores/base/__init__.py +15 -0
  25. mlrun/model_monitoring/{stores/model_endpoint_store.py → db/stores/base/store.py} +47 -6
  26. mlrun/model_monitoring/db/stores/sqldb/__init__.py +13 -0
  27. mlrun/model_monitoring/db/stores/sqldb/models/__init__.py +49 -0
  28. mlrun/model_monitoring/{stores → db/stores/sqldb}/models/base.py +76 -3
  29. mlrun/model_monitoring/db/stores/sqldb/models/mysql.py +68 -0
  30. mlrun/model_monitoring/{stores → db/stores/sqldb}/models/sqlite.py +13 -1
  31. mlrun/model_monitoring/db/stores/sqldb/sql_store.py +662 -0
  32. mlrun/model_monitoring/db/stores/v3io_kv/__init__.py +13 -0
  33. mlrun/model_monitoring/{stores/kv_model_endpoint_store.py → db/stores/v3io_kv/kv_store.py} +134 -3
  34. mlrun/model_monitoring/helpers.py +0 -2
  35. mlrun/model_monitoring/stream_processing.py +41 -9
  36. mlrun/model_monitoring/tracking_policy.py +7 -1
  37. mlrun/model_monitoring/writer.py +4 -36
  38. mlrun/projects/pipelines.py +13 -1
  39. mlrun/projects/project.py +109 -101
  40. mlrun/run.py +3 -1
  41. mlrun/runtimes/base.py +6 -0
  42. mlrun/runtimes/nuclio/api_gateway.py +188 -61
  43. mlrun/runtimes/nuclio/function.py +3 -0
  44. mlrun/runtimes/nuclio/serving.py +28 -32
  45. mlrun/runtimes/pod.py +26 -0
  46. mlrun/serving/server.py +4 -6
  47. mlrun/serving/states.py +34 -14
  48. mlrun/utils/helpers.py +34 -0
  49. mlrun/utils/version/version.json +2 -2
  50. {mlrun-1.7.0rc6.dist-info → mlrun-1.7.0rc7.dist-info}/METADATA +14 -5
  51. {mlrun-1.7.0rc6.dist-info → mlrun-1.7.0rc7.dist-info}/RECORD +55 -51
  52. mlrun/model_monitoring/batch.py +0 -933
  53. mlrun/model_monitoring/stores/models/__init__.py +0 -27
  54. mlrun/model_monitoring/stores/models/mysql.py +0 -34
  55. mlrun/model_monitoring/stores/sql_model_endpoint_store.py +0 -382
  56. {mlrun-1.7.0rc6.dist-info → mlrun-1.7.0rc7.dist-info}/LICENSE +0 -0
  57. {mlrun-1.7.0rc6.dist-info → mlrun-1.7.0rc7.dist-info}/WHEEL +0 -0
  58. {mlrun-1.7.0rc6.dist-info → mlrun-1.7.0rc7.dist-info}/entry_points.txt +0 -0
  59. {mlrun-1.7.0rc6.dist-info → mlrun-1.7.0rc7.dist-info}/top_level.txt +0 -0
mlrun/utils/helpers.py CHANGED
@@ -1405,6 +1405,18 @@ def as_number(field_name, field_value):
1405
1405
 
1406
1406
 
1407
1407
  def filter_warnings(action, category):
1408
+ """
1409
+ Decorator to filter warnings
1410
+
1411
+ Example::
1412
+ @filter_warnings("ignore", FutureWarning)
1413
+ def my_function():
1414
+ pass
1415
+
1416
+ :param action: one of "error", "ignore", "always", "default", "module", or "once"
1417
+ :param category: a class that the warning must be a subclass of
1418
+ """
1419
+
1408
1420
  def decorator(function):
1409
1421
  def wrapper(*args, **kwargs):
1410
1422
  # context manager that copies and, upon exit, restores the warnings filter and the showwarning() function.
@@ -1562,3 +1574,25 @@ def is_safe_path(base, filepath, is_symlink=False):
1562
1574
  os.path.abspath(filepath) if not is_symlink else os.path.realpath(filepath)
1563
1575
  )
1564
1576
  return base == os.path.commonpath((base, resolved_filepath))
1577
+
1578
+
1579
+ def get_serving_spec():
1580
+ data = None
1581
+
1582
+ # we will have the serving spec in either mounted config map
1583
+ # or env depending on the size of the spec and configuration
1584
+
1585
+ try:
1586
+ with open(mlrun.common.constants.MLRUN_SERVING_SPEC_PATH) as f:
1587
+ data = f.read()
1588
+ except FileNotFoundError:
1589
+ pass
1590
+
1591
+ if data is None:
1592
+ data = os.environ.get("SERVING_SPEC_ENV", "")
1593
+ if not data:
1594
+ raise mlrun.errors.MLRunInvalidArgumentError(
1595
+ "Failed to find serving spec in env var or config file"
1596
+ )
1597
+ spec = json.loads(data)
1598
+ return spec
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "cbfd1ee5f41bee97ff90efbce14bac0a56b58dce",
3
- "version": "1.7.0-rc6"
2
+ "git_commit": "06b1879c4a1857b20f07e805c46f51aa4ac74cef",
3
+ "version": "1.7.0-rc7"
4
4
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mlrun
3
- Version: 1.7.0rc6
3
+ Version: 1.7.0rc7
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.6.4
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,13 +44,16 @@ 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.7.5
47
+ Requires-Dist: storey ~=1.7.6
48
48
  Requires-Dist: inflection ~=0.5.0
49
49
  Requires-Dist: python-dotenv ~=0.17.0
50
50
  Requires-Dist: setuptools ~=69.1
51
51
  Requires-Dist: deprecated ~=1.2
52
52
  Requires-Dist: jinja2 >=3.1.3,~=3.1
53
53
  Requires-Dist: orjson ~=3.9
54
+ Provides-Extra: alibaba-oss
55
+ Requires-Dist: ossfs ==2023.12.0 ; extra == 'alibaba-oss'
56
+ Requires-Dist: oss2 ==2.18.1 ; extra == 'alibaba-oss'
54
57
  Provides-Extra: all
55
58
  Requires-Dist: adlfs ==2023.9.0 ; extra == 'all'
56
59
  Requires-Dist: aiobotocore <2.8,>=2.5.0 ; extra == 'all'
@@ -71,6 +74,8 @@ Requires-Dist: graphviz ~=0.20.0 ; extra == 'all'
71
74
  Requires-Dist: kafka-python ~=2.0 ; extra == 'all'
72
75
  Requires-Dist: mlflow ~=2.8 ; extra == 'all'
73
76
  Requires-Dist: msrest ~=0.6.21 ; extra == 'all'
77
+ Requires-Dist: oss2 ==2.18.1 ; extra == 'all'
78
+ Requires-Dist: ossfs ==2023.12.0 ; extra == 'all'
74
79
  Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'all'
75
80
  Requires-Dist: pyopenssl >=23 ; extra == 'all'
76
81
  Requires-Dist: redis ~=4.3 ; extra == 'all'
@@ -81,7 +86,7 @@ Requires-Dist: uvicorn ~=0.27.1 ; extra == 'api'
81
86
  Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'api'
82
87
  Requires-Dist: apscheduler <4,>=3.10.3 ; extra == 'api'
83
88
  Requires-Dist: objgraph ~=3.6 ; extra == 'api'
84
- Requires-Dist: igz-mgmt ~=0.1.0 ; extra == 'api'
89
+ Requires-Dist: igz-mgmt ~=0.1.1 ; extra == 'api'
85
90
  Requires-Dist: humanfriendly ~=10.0 ; extra == 'api'
86
91
  Requires-Dist: fastapi ~=0.110.0 ; extra == 'api'
87
92
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'api'
@@ -116,6 +121,8 @@ Requires-Dist: graphviz ~=0.20.0 ; extra == 'complete'
116
121
  Requires-Dist: kafka-python ~=2.0 ; extra == 'complete'
117
122
  Requires-Dist: mlflow ~=2.8 ; extra == 'complete'
118
123
  Requires-Dist: msrest ~=0.6.21 ; extra == 'complete'
124
+ Requires-Dist: oss2 ==2.18.1 ; extra == 'complete'
125
+ Requires-Dist: ossfs ==2023.12.0 ; extra == 'complete'
119
126
  Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'complete'
120
127
  Requires-Dist: pyopenssl >=23 ; extra == 'complete'
121
128
  Requires-Dist: redis ~=4.3 ; extra == 'complete'
@@ -140,11 +147,13 @@ Requires-Dist: gcsfs ==2023.9.2 ; extra == 'complete-api'
140
147
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'complete-api'
141
148
  Requires-Dist: graphviz ~=0.20.0 ; extra == 'complete-api'
142
149
  Requires-Dist: humanfriendly ~=10.0 ; extra == 'complete-api'
143
- Requires-Dist: igz-mgmt ~=0.1.0 ; extra == 'complete-api'
150
+ Requires-Dist: igz-mgmt ~=0.1.1 ; extra == 'complete-api'
144
151
  Requires-Dist: kafka-python ~=2.0 ; extra == 'complete-api'
145
152
  Requires-Dist: mlflow ~=2.8 ; extra == 'complete-api'
146
153
  Requires-Dist: msrest ~=0.6.21 ; extra == 'complete-api'
147
154
  Requires-Dist: objgraph ~=3.6 ; extra == 'complete-api'
155
+ Requires-Dist: oss2 ==2.18.1 ; extra == 'complete-api'
156
+ Requires-Dist: ossfs ==2023.12.0 ; extra == 'complete-api'
148
157
  Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'complete-api'
149
158
  Requires-Dist: pymysql ~=1.0 ; extra == 'complete-api'
150
159
  Requires-Dist: pyopenssl >=23 ; extra == 'complete-api'
@@ -1,15 +1,15 @@
1
1
  mlrun/__init__.py,sha256=o9dHUfVFADfsi6GnOPLr2OkfkHdPvOnA7rkoECen0-I,7248
2
2
  mlrun/__main__.py,sha256=vg-HMhJqQ3OYt31YmijjBh6-6AZQVe4FvDYn4MwEpYs,49229
3
- mlrun/config.py,sha256=DMwxalJOY6E5_JyygKq1LFKUN2vL_sop3gssHm4LWyg,62775
3
+ mlrun/config.py,sha256=dfX2Q7IcmLct9BSkQM92jARN3gCMNph2qG4m3wxsJ5Q,63044
4
4
  mlrun/errors.py,sha256=HmOAdfpL0bCDisZMUoJPOumneq71ko49Ph-XBL-A4xA,7080
5
5
  mlrun/execution.py,sha256=meZ_qSdTmnpqW7DKv7LdBmuE1Ut34E1RbK2kO0MD_QM,40866
6
6
  mlrun/features.py,sha256=nPDvy8tJuxwbRr843oWcnLBrqMJDPUanzn2Sb3BBi6w,15569
7
7
  mlrun/k8s_utils.py,sha256=YyFZT2WNZrJkcZoqxrkduQgzQ1X-7195O0mmEqvaIug,7023
8
8
  mlrun/kfpops.py,sha256=nVQUjLVBhXqkL2OTWJUo4qFIfNVEXUKIXJmRpBW0MVU,30481
9
9
  mlrun/lists.py,sha256=ev-gLBPc_az03yQEHrKyDPq_Bjosa4D_XFiVbRIpmRY,8286
10
- mlrun/model.py,sha256=e9tJG8-wP3gPywDu7wJMNsusLTGpVA9WpBbILFwR5Ns,70583
10
+ mlrun/model.py,sha256=BkPHhOQZJUQI4YB74FE8gEBOHwY1rpEhiEBcjzWIJtw,70641
11
11
  mlrun/render.py,sha256=aMH3U2z7ELpW8MwYEGOrqLdEUwMX29shqy6V6-KbgiM,13009
12
- mlrun/run.py,sha256=br2oHhmDvcMSwEEuEBWITTRqGXiFaaIEzNYG21RVhKc,42822
12
+ mlrun/run.py,sha256=WHGTAzQf-HgKLULVYcYvxlOd9Ku-53pRVwvJ_d5JDuo,42879
13
13
  mlrun/secrets.py,sha256=Nl_7ZNSErd-AOH19vVx_PjrLg9bJM9L-BvEYoPolB1c,7776
14
14
  mlrun/api/schemas/__init__.py,sha256=LhfO3myrnLVxC0MYCAc1_LTuqhRlYV3H7BwJkjOu3dQ,14211
15
15
  mlrun/artifacts/__init__.py,sha256=LxEWcMYPawJYvNOl6H2_UvrxdLTNYfKeZcMEKFZnGgA,1187
@@ -19,15 +19,15 @@ mlrun/artifacts/manager.py,sha256=p6CmIJH91vm9DsEZHgHxKYTHU2BvF9IwpLv85cqoHNs,14
19
19
  mlrun/artifacts/model.py,sha256=DXT24CH1ZgQLz9HcWBfjRAEhCBfznoa7-pB52N9qMOI,25205
20
20
  mlrun/artifacts/plots.py,sha256=RPJxfzS_3dKAXiY2N1LchS7c9LsrJMg42OAVyDn0mK0,15860
21
21
  mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
22
- mlrun/common/constants.py,sha256=OwcN3HroG3l94Kx1B-247cp1UyqC0IVLc_TCFGWmrg4,745
22
+ mlrun/common/constants.py,sha256=7SLxtvq1VGO9ed0xQ87jM09ScTKMuv_2qx_IBE6hybg,991
23
23
  mlrun/common/helpers.py,sha256=BAhyuUnZvD_BT43i0_1EszuSbKgZx7bFy2KRIWP0XeA,1087
24
24
  mlrun/common/secrets.py,sha256=vc8WV82EZsCB5ENjUkObFOzZP59aZ1w8F82PTnqwBnc,5181
25
- mlrun/common/types.py,sha256=V_jCEFCJZcycFVsPzEToCRQja5bqW0zRAAVaGN_QYxQ,790
25
+ mlrun/common/types.py,sha256=nNqNqNpn-xl4xliy-ofBAWVX02q5NFh6wxmvOnD4wW8,949
26
26
  mlrun/common/db/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
27
27
  mlrun/common/db/sql_session.py,sha256=Znc8KE2oLy4lg3_vRki1sVlNx59TgDSOTCXfU561hBU,2659
28
28
  mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ9sKhss10ld8A,721
29
29
  mlrun/common/model_monitoring/helpers.py,sha256=1CpxIDQPumFnpUB1eqcvCpLlyPFVeW2sL6prM-N5A1A,4405
30
- mlrun/common/schemas/__init__.py,sha256=PKOeaerKRHOIWCmaIhCYdlieOZhZDDf8cubNOWlJQaM,4935
30
+ mlrun/common/schemas/__init__.py,sha256=8gTYVVxSI8-IvbHVf7LyI1SXrhgGufQtx-7k-UoxkcM,4984
31
31
  mlrun/common/schemas/api_gateway.py,sha256=lDXnA0mE9PCyeB0p7VSoj7TN0xSF-e6XUrTYJjLqbbQ,2344
32
32
  mlrun/common/schemas/artifact.py,sha256=d6srME_eWn2MpGuqvPQZtePRFkjDfNJgQ6JDd51qVrI,2796
33
33
  mlrun/common/schemas/auth.py,sha256=KOQfABIXTrcMh3Us5vlmnN4w3bJB7Rl3Xd5GTAFpr-g,5970
@@ -48,7 +48,7 @@ mlrun/common/schemas/memory_reports.py,sha256=tpS3fpvxa6VcBpzCRzcZTt0fCF0h6ReUet
48
48
  mlrun/common/schemas/notification.py,sha256=Ge7eWNGf_XUFkjOnUkyUOubdEbmXh9z_OSGcSturt4w,1768
49
49
  mlrun/common/schemas/object.py,sha256=VleJSUmDJMl92knLgaDE8SWCi3ky0UaHcwcwOIapPQ8,1980
50
50
  mlrun/common/schemas/pipeline.py,sha256=GhrIsf5tRUQtQYboZ2feXdMjpFelVvduM-SIQoV5TZw,1177
51
- mlrun/common/schemas/project.py,sha256=OsWVDDShfgKnNMFXHep7EhbL75_hZmfwKbED10HCRZg,4277
51
+ mlrun/common/schemas/project.py,sha256=TvzqyNtWtSdj373_Wm6gQTIZXMPmBgny0_Wco_wot4g,4340
52
52
  mlrun/common/schemas/regex.py,sha256=8_vbDeAE0SODJDj7yUFg1FbaB9CNydYQTJ29JxE74Kc,776
53
53
  mlrun/common/schemas/runs.py,sha256=H9QhaN83cFUN42eE9TLgi1gs6Xdq11oQSZ96ESM94mI,745
54
54
  mlrun/common/schemas/runtime_resource.py,sha256=2rSuYL-9JkESSomlnU91mYDbfV-IkqZeXx6OHuMmDxs,1554
@@ -56,29 +56,30 @@ mlrun/common/schemas/schedule.py,sha256=e9nAeRkZkyk37Ws1cBNseHVKPOQqmWV16rt-zr_e
56
56
  mlrun/common/schemas/secret.py,sha256=51tCN1F8DFTq4y_XdHIMDy3I1TnMEBX8kO8BHKavYF4,1484
57
57
  mlrun/common/schemas/tag.py,sha256=OAn9Qt6z8ibqw8uU8WQSvuwY8irUv45Dhx2Ko5FzUss,884
58
58
  mlrun/common/schemas/workflow.py,sha256=eRoaOBFiWbvP0iwZ6Aof5JmheV81A0-0PGi8L4vuXmI,1823
59
- mlrun/common/schemas/model_monitoring/__init__.py,sha256=aBpxCS3CqAuhzSIdlqLEfRBneOW0FtID701C00J1L0Q,1415
60
- mlrun/common/schemas/model_monitoring/constants.py,sha256=qEZfe3DabmiDIoTDuYZiKEqXtaIjm19sN91ly0iK_KA,7822
59
+ mlrun/common/schemas/model_monitoring/__init__.py,sha256=SH3RBljBadT43eEyWttG1-gJCsYMjbfGVno1jYy8UEU,1501
60
+ mlrun/common/schemas/model_monitoring/constants.py,sha256=gJg4SI2R7lHNcKydC6qZua4ktE11X7dCBK3jZ45wJDA,8322
61
61
  mlrun/common/schemas/model_monitoring/grafana.py,sha256=aiNK8iL_fIzDVO_bj4fted9P6fAwaymcPC2OnRk36po,1431
62
62
  mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=ct8Jd-08KwrFw2uVjdwO_jmNrbhYmQvHBAPLO7AVpn4,12000
63
63
  mlrun/data_types/__init__.py,sha256=EkxfkFoHb91zz3Aymq-KZfCHlPMzEc3bBqgzPUwmHWY,1087
64
- mlrun/data_types/data_types.py,sha256=qgRIdlSl9X-rAnwOW-F0hwPbDKOZI05JlSzV1O8ReaU,4647
64
+ mlrun/data_types/data_types.py,sha256=hWiL5TPOj9EK7_nd1yttLBUhXTmBYLDZzmG-hWzzhHE,4751
65
65
  mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,6134
66
66
  mlrun/data_types/spark.py,sha256=qKQ2TIAPQWDgmIOmpyV5_uuyUX3AnXWSq6GPpVjVIek,9457
67
67
  mlrun/data_types/to_pandas.py,sha256=_8_M9WclYNkPeHLo0eXhrnLE6SiLkvNTreeqfJ9G5yY,9945
68
68
  mlrun/datastore/__init__.py,sha256=bsRzu39UOocQAAl_nOKCbhxrZhWUEXrAc8WV3zs0VyI,4118
69
- mlrun/datastore/azure_blob.py,sha256=W8mR9t3WChITQHJ3oY3DEfFDKKx1wjFNMzB07wf8Il0,9168
70
- mlrun/datastore/base.py,sha256=XsjmFOeLzkTnokkoEJLYtWdcy1m9V7i1PuE8zHUj9X4,24175
71
- mlrun/datastore/datastore.py,sha256=yEdiPzMx69zTCMtY4fZ7aQafyAMHynQs2papTQ-Sc0E,9018
69
+ mlrun/datastore/alibaba_oss.py,sha256=OfQ9AbsJNBFF9DFgUdq38TvKw6qwnHmEcnH-nze6ZZg,4827
70
+ mlrun/datastore/azure_blob.py,sha256=NpkEoIie7mH171tOwlrwpEwzRYGoo9SF3FAAegEENhU,9019
71
+ mlrun/datastore/base.py,sha256=QNiYoeyMRnZiyp7HRT68sfjWeSyu0zLLGfzTkTdkyl8,24421
72
+ mlrun/datastore/datastore.py,sha256=GGo8XPnKVWWgY0b-18D93V1g8DJgeBNafa6knnHEabw,9111
72
73
  mlrun/datastore/datastore_profile.py,sha256=JSfZaxP1DZRnbRUTu00FEYp-C4bCKJziNgd5xRGrBaI,15985
73
74
  mlrun/datastore/dbfs_store.py,sha256=5IkxnFQXkW0fdx-ca5jjQnUdTsTfNdJzMvV31ZpDNrM,6634
74
75
  mlrun/datastore/filestore.py,sha256=nS3Ie6jG41NDiW_as9tF8Nu5maaSVEKYKUr1IQtPhuA,3767
75
- mlrun/datastore/google_cloud_storage.py,sha256=ri5bTqTNLij3ujlPoKlptDPi7oN6JgqIiVGWYoEmgsE,6112
76
+ mlrun/datastore/google_cloud_storage.py,sha256=Du5qYYUCSkLt9acQDeQ-PgEjttsE7D2eAoLebO43kiw,6110
76
77
  mlrun/datastore/hdfs.py,sha256=jCuuPbnITezNYug9iYNLEJW87GGXSqW6H-UiqAynfdw,1674
77
78
  mlrun/datastore/helpers.py,sha256=-bKveE9rteLd0hJd6OSMuMbfz09W_OXyu1G5O2ihZjs,622
78
79
  mlrun/datastore/inmem.py,sha256=6PAltUk7uyYlDgnsaJPOkg_P98iku1ys2e2wpAmPRkc,2779
79
80
  mlrun/datastore/redis.py,sha256=yJ8xYHAR4DyYzsAMLQmsdzO-VVUTQABkIxcWhVHeUFI,5575
80
81
  mlrun/datastore/s3.py,sha256=EIPAXJGZ9kpQVbb_utFFZskDM21fAGz4m6QEAGecABU,8110
81
- mlrun/datastore/sources.py,sha256=1cQ697He_2avwLH6_6bMB2LBl1arBvSfdL-cYmH3UP8,40160
82
+ mlrun/datastore/sources.py,sha256=3BgqVgJzdiK7OWbbSJiGBnIY1OnP4W9lLEdk--RGruQ,40125
82
83
  mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
83
84
  mlrun/datastore/spark_utils.py,sha256=50rllp6xXpXY__1LbU7aTXUU5ca8dKAfoskPre3npZo,1611
84
85
  mlrun/datastore/store_resources.py,sha256=dfMdFy2urilECtlwLJr5CSG12MA645b-NPYDnbr5s1A,6839
@@ -88,10 +89,10 @@ mlrun/datastore/v3io.py,sha256=oCAMpST6sKnjm5CaNsTrcwqk3bvUFzuKBvNFmUJpPfw,9252
88
89
  mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
89
90
  mlrun/datastore/wasbfs/fs.py,sha256=MnSj7Q4OKA2L55ihCmUnj2t3GA3B77oLMdAw-yxvN9w,6151
90
91
  mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
91
- mlrun/db/base.py,sha256=d6J2g2uFvJh8CcAYoFR4DxPvKsAjByKxLqGENWDoluc,18906
92
+ mlrun/db/base.py,sha256=Qrh0RqYRvmE4ZfmMXCg2xyxFeBQfzpNib7sOWFCQ5uA,19171
92
93
  mlrun/db/factory.py,sha256=ibIrE5QkIIyzDU1FXKrfbc31cZiRLYKDZb8dqCpQwyU,2397
93
- mlrun/db/httpdb.py,sha256=JtVbbetPzhpZNYb5meXMevPIRGkGu2KBbb9QTADYvLs,158600
94
- mlrun/db/nopdb.py,sha256=FoEFMfnh1aSs-mcXlwA8GnnbQCIoTtFkflbFpUF5bMY,14814
94
+ mlrun/db/httpdb.py,sha256=kR8sfnIv9W6S3FrFTPrTmNKIdIQh-Q7n3W6LmT8wxls,158765
95
+ mlrun/db/nopdb.py,sha256=LM7rmx6TnSLFi6ASWs4XUsQhoAVRkIvKRPj85IztNOA,14882
95
96
  mlrun/feature_store/__init__.py,sha256=n1F5m1svFW2chbE2dJdWzZJJiYS4E-y8PQsG9Q-F0lU,1584
96
97
  mlrun/feature_store/api.py,sha256=bO5I_lkIPLv8j3AXYOAseSBI8RrsGwQ9m7isepuADkw,49480
97
98
  mlrun/feature_store/common.py,sha256=DKmoRk04NCS1gv7qZuEUa2-g8WsfR6IWjYctcrqKVlg,12853
@@ -197,32 +198,35 @@ mlrun/launcher/client.py,sha256=q3bmydSpO2x2Fbgy18W1uvaLbtxzJFlj1Uq6YNVndUU,6048
197
198
  mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
198
199
  mlrun/launcher/local.py,sha256=6E83lCJ8Ma4WPCQYzo3P6c4tvpIipJsokZ3zMrCORbk,10909
199
200
  mlrun/launcher/remote.py,sha256=2DGInyx0um5BRUEA5DYcnLXzVKTIv8JxeXogWdxl48o,7469
200
- mlrun/model_monitoring/__init__.py,sha256=XaYyvWsIXpjJQ2gCPj8tFvfSbRSEEqgDtNz4tCE5H4g,915
201
- mlrun/model_monitoring/api.py,sha256=urggp5P_lpfLO1RO4YVdT_jDhIMF8Xqr22H3OYhRZnw,36535
201
+ mlrun/model_monitoring/__init__.py,sha256=fS93sGyotiurc2lf1x49JiM3MaN8zm4YxKYN42Ecc4U,859
202
+ mlrun/model_monitoring/api.py,sha256=_prcm5Z3YhENwwFnfTNvWKkLn1eK51jiwyaz687n2z4,29276
202
203
  mlrun/model_monitoring/application.py,sha256=w87IuSgkIUXV5T6HpMiWWCsxFoikD6Mk8JpoyoefUCg,12504
203
- mlrun/model_monitoring/batch.py,sha256=nVEj-NtgqE4m9-LPMiWht-ZEbw4YY24jjaskuTcsPqs,38184
204
- mlrun/model_monitoring/controller.py,sha256=OUqrZkYuCP2_t5pSEZ4gOemejWbjnNLTcdMEAKTBths,27925
204
+ mlrun/model_monitoring/controller.py,sha256=DtrEOHGOlBm2PYPESjo5ea4ubHgUD7eEy0A1YMQPGEY,27745
205
205
  mlrun/model_monitoring/controller_handler.py,sha256=J9Y9ppLsQaxyYRl21165Rr7QuI9EM-mk-5veAqs4Bi0,1336
206
206
  mlrun/model_monitoring/evidently_application.py,sha256=o9PsDsjyRfcbuC1X1gb2ww5nzWCsR_KheabtpxKZ5yY,4824
207
207
  mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
208
- mlrun/model_monitoring/helpers.py,sha256=OsMBvRS_kSFe4cdarwVrrlwGeRDOesUm8zmasfRcfQg,9013
208
+ mlrun/model_monitoring/helpers.py,sha256=wod0L2Q9GCah9x1TtbajjkuQvQ4XKX5qGxQeJDx70hc,8925
209
209
  mlrun/model_monitoring/model_endpoint.py,sha256=BBtxdY5ciormI_al4zshmIp0GN7hGhOCn-hLgpCXek0,3938
210
210
  mlrun/model_monitoring/prometheus.py,sha256=cUR4y73GutJB_pA_VCBDl9YtK4PcIJp2wj2rnLVmYi4,7578
211
- mlrun/model_monitoring/stream_processing.py,sha256=XKj9ToKj7VgF_Yxb6I27r1AoVU64EwflGC1966oIUaQ,48198
212
- mlrun/model_monitoring/tracking_policy.py,sha256=9P0oRjFMfoqKY7Zv2rv7abKgnKkiepFJfimWx-LOm0M,5283
213
- mlrun/model_monitoring/writer.py,sha256=IWPzPenoAkfIxlvn0IdcdB19Nxqmg4mjbo3-RnYWw9A,8669
211
+ mlrun/model_monitoring/stream_processing.py,sha256=A2dKK2XJAkGnVWK6MawsSRN4nR_ZgFCKILyHgj8LJhw,49317
212
+ mlrun/model_monitoring/tracking_policy.py,sha256=sQq956akAQpntkrJwIgFWcEq-JpyVcg0FxgNa4h3V70,5502
213
+ mlrun/model_monitoring/writer.py,sha256=wXfGh9_b5huZF-rqOkAnPuxB62aABHHDB2ja9ncd4fk,7309
214
214
  mlrun/model_monitoring/applications/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
215
215
  mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=IG1qRXs316OdjcLLEHeKGH4t6WZabt8o92RLk-iB9e4,11647
216
+ mlrun/model_monitoring/db/__init__.py,sha256=sXYc6CF2I_HMJyUoY_4VueQf3OL-vhEAuWHxQvuoGRs,662
217
+ mlrun/model_monitoring/db/stores/__init__.py,sha256=G3g1ZclwVWfdtFsuTAW1O2A2ndR4ku9xU9TivnIb4yk,4305
218
+ mlrun/model_monitoring/db/stores/base/__init__.py,sha256=JufJETW3BXzPhFwbRa8dMf7BFGGZKceIWIMgr5x9n9c,599
219
+ mlrun/model_monitoring/db/stores/base/store.py,sha256=nOWEwL1zDxYQ09QBALXK57k9FNFIuYg9H0Z_ntW-Xs8,7073
220
+ mlrun/model_monitoring/db/stores/sqldb/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
221
+ mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=tTZKprKc975t5KnuF8cTZ5oomxVN8pX8Nr1k27agf6g,27104
222
+ mlrun/model_monitoring/db/stores/sqldb/models/__init__.py,sha256=359IyQfnBqe4MXrKe4wCPAM2-ntqjUYCx1n_djSdNYg,2196
223
+ mlrun/model_monitoring/db/stores/sqldb/models/base.py,sha256=h40tZoHuf0Id7_9gD4D5rcHRT6u7GF74O5tbuNSl3lU,4413
224
+ mlrun/model_monitoring/db/stores/sqldb/models/mysql.py,sha256=IQxnupQAVnAu_J2aENRyKuRJuOc5EcfVtWBRCEpOwzA,2022
225
+ mlrun/model_monitoring/db/stores/sqldb/models/sqlite.py,sha256=S45CfdLSq_XJVKz3ZtdA8imsWWnuKdHb696HjDktLTU,994
226
+ mlrun/model_monitoring/db/stores/v3io_kv/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
227
+ mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=4xsAUYJau97DoNHIrxpGJpec7r184GLGuOQhlz38UEE,27471
216
228
  mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
217
229
  mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
218
- mlrun/model_monitoring/stores/__init__.py,sha256=adU_G07jkD3JUT8__d0jAxs9nNomL7igKmd6uVM9L50,4525
219
- mlrun/model_monitoring/stores/kv_model_endpoint_store.py,sha256=SVHoaG4cfwntPfQMj6ZEzL5lGDYG67orCIAIb5-G9SE,22222
220
- mlrun/model_monitoring/stores/model_endpoint_store.py,sha256=stinaLq9W1iq2UJiTbPnk28Mvaeail7gwcJYHbrVjfE,5590
221
- mlrun/model_monitoring/stores/sql_model_endpoint_store.py,sha256=S5SA2P2BfLeg5lXCrEnMutghFffdmE59SCnQUiEjP7w,16139
222
- mlrun/model_monitoring/stores/models/__init__.py,sha256=5Djb73mfM9PxWE5EFUzrpLVLkuGaA34APibi_l-lu8k,1111
223
- mlrun/model_monitoring/stores/models/base.py,sha256=yC2_u8wTNoP9JHHewYQgWgarP400OgzlqYWpS-N1V4s,2801
224
- mlrun/model_monitoring/stores/models/mysql.py,sha256=9UYG5FuoVJQoAXP_xrCnbwmTVAm8ba6Bu54R9yg5BJs,1131
225
- mlrun/model_monitoring/stores/models/sqlite.py,sha256=9c5Tw4YuuRiD4GBoQdWGPUzm_6rC-u6zCg962g99lO0,765
226
230
  mlrun/package/__init__.py,sha256=uWILzN42bcq5vFRk6ptxEmn1I5uBWAnhaJr7e4H834w,7082
227
231
  mlrun/package/context_handler.py,sha256=Z8v7cXAZXa5l3Tgg6IiEVm74Qbp5cOxx30jvkAY3dwo,14589
228
232
  mlrun/package/errors.py,sha256=LKF8SSaRIdbkB7JQz6b9U4mZV42Ebnf6ZHu4wKuWqK4,1204
@@ -245,10 +249,10 @@ mlrun/platforms/iguazio.py,sha256=M89zXuCd1bbcIANSy4ec-9evXIs7nPRVo3D0YhKvEtE,19
245
249
  mlrun/platforms/other.py,sha256=T1BibmEBNggM62YJ6oejRmcVv_1besfH5DDHhCaDkRg,11828
246
250
  mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
247
251
  mlrun/projects/operations.py,sha256=SiDHd7cqh9u23AVpETbkJE6WmOnB434zBrwM-StZLQY,18538
248
- mlrun/projects/pipelines.py,sha256=SMXBmIeuopwPpU0o2VFvaPXgbmaj-2WfCJryN6mZvZY,40124
249
- mlrun/projects/project.py,sha256=S8nL7it4E92OUWGE6PSjoQQsGNV22Q5bnRsaI2LEL2E,165058
252
+ mlrun/projects/pipelines.py,sha256=icejHghKd5ofmitEZW0hGLiXa69So4-HywseDORTrDs,40567
253
+ mlrun/projects/project.py,sha256=qaHuNVEgWgZCyzc_rE_fTr_aFRWIzEGFHn-tlDMRZLk,165818
250
254
  mlrun/runtimes/__init__.py,sha256=tTDfia4cr0gUy2rEtLTj4Nz6M_JJd6utzkFi-ogDvXg,8289
251
- mlrun/runtimes/base.py,sha256=pXZAuE5kzOwdSBUjscdXzgfjdfzW4PxLq9d3Mf0IQbI,36572
255
+ mlrun/runtimes/base.py,sha256=prqlbGq5fbgQ8atBMjsXhdRY5UqS1egpHtOPaAjhVyI,36683
252
256
  mlrun/runtimes/constants.py,sha256=oP3OxdYCpbvadJ3zP1JGkqGBKaBheNkCnJISWha9x58,9513
253
257
  mlrun/runtimes/daskjob.py,sha256=xvN8ajs3-_voqxrfz6b3rh_idNw4ypRAkPRWGOnDMGA,19149
254
258
  mlrun/runtimes/funcdoc.py,sha256=FHwnLfFzoD6yGlsAJXAl_3VTtudgg4fTrsw_XqLOkC0,10508
@@ -256,7 +260,7 @@ mlrun/runtimes/function_reference.py,sha256=iWKRe4r2GTc5S8FOIASYUNLwwne8NqIui51P
256
260
  mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
257
261
  mlrun/runtimes/kubejob.py,sha256=UfSm7hiPLAtM0TfIE5nbBdSvrbsKWCZfvKP-SZhGyAk,12500
258
262
  mlrun/runtimes/local.py,sha256=u9MhASzF7VRt_yT6_mZPze_hDvAaBxonPk_KafRG3Gg,21783
259
- mlrun/runtimes/pod.py,sha256=id1mxg6lCIWQA55x0Yk3-fLwtnR9MisRkwRoIW0rWCE,58664
263
+ mlrun/runtimes/pod.py,sha256=tLnsGln3bmPAK-Mmr4fXfZ4P7IJ9R30Z-zaNhxSk-oE,59908
260
264
  mlrun/runtimes/remotesparkjob.py,sha256=ORkKmZRz_V3YiNE1NF7JIa_hI_LWbKEyI15Qb6R6g5I,7326
261
265
  mlrun/runtimes/utils.py,sha256=G4t29elE2PBT7WQZmrEOTIFAJUmeu6zXGEWwgz533vg,16004
262
266
  mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
@@ -268,10 +272,10 @@ mlrun/runtimes/mpijob/abstract.py,sha256=AqIb-nEKZaRO7x1GxJea6cXg_Tn3Dr4WiWZUz3y
268
272
  mlrun/runtimes/mpijob/v1.py,sha256=_RUlFo_3NcFf7x-QpUNVm8f7qNbRDIdUmPf_ijrv54U,3206
269
273
  mlrun/runtimes/mpijob/v1alpha1.py,sha256=w_971wwL03hW_ksgHJXdjTdjhxCs9KJ0zNqHSQ9whIM,1034
270
274
  mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
271
- mlrun/runtimes/nuclio/api_gateway.py,sha256=t4im6F8f-zPYYXrHXCFr46Rw6sGgvydIpxpgxncTUMQ,10277
272
- mlrun/runtimes/nuclio/function.py,sha256=bCK_EVrLe2NfAelVpKtQrOYVnsPMiT91sB2_aJzLP_o,48990
275
+ mlrun/runtimes/nuclio/api_gateway.py,sha256=5wJaST489LWAr8py_TiMRKnKtybvM3UvxxpmIojfE2A,14855
276
+ mlrun/runtimes/nuclio/function.py,sha256=7Ax0u760z-ex0yRlztJRrUZcKGXeJNvsXcUAJqjc26w,49044
273
277
  mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
274
- mlrun/runtimes/nuclio/serving.py,sha256=hzkXKCVgU6uXLYfO3H15ZWJIQiSbcKY2M_WLybHW1hM,30363
278
+ mlrun/runtimes/nuclio/serving.py,sha256=e0VdJ6zbkurEl9ZlYqGzUaWRUM_US2bE7fpV6RZ83as,29745
275
279
  mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
276
280
  mlrun/runtimes/nuclio/application/application.py,sha256=IxBvE7XcQKgtPWJqib32v6ANigxbK0-yfKC3vq0mjG4,9678
277
281
  mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=RDR2BuO7E87Ek9DYjvEaF5manuxcuVaVY7eZX986GFI,2920
@@ -281,9 +285,9 @@ mlrun/serving/__init__.py,sha256=_6HRAOuS2Ehjo3vwx5h1aI_-JppxEAsl4VfEERAbGFE,107
281
285
  mlrun/serving/merger.py,sha256=PXLn3A21FiLteJHaDSLm5xKNT-80eTTjfHUJnBX1gKY,6116
282
286
  mlrun/serving/remote.py,sha256=jLFjMfgPx_PwJkpRHYbKrB9EQZcD4gZ-iczzHl1o0zs,18010
283
287
  mlrun/serving/routers.py,sha256=YN8k6eWWraqWOU3SqYFda7ky-oV_O0--zAuPEGwKdPI,54976
284
- mlrun/serving/server.py,sha256=42wWLtMb1AWeXtSXzSv0bKfQkxAQreqxs40Q0C_Bc-c,21161
288
+ mlrun/serving/server.py,sha256=gs3FATCkCv6Ngke70vNaCWGhONH6IMI4eiuvRwLLMdY,21055
285
289
  mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
286
- mlrun/serving/states.py,sha256=EUkltwQlNNU6mjsUc8f3Rq65SGiAICkCAxbHw2jUqBk,55773
290
+ mlrun/serving/states.py,sha256=7_nvFobvT-PIJoegkfXYrMlDD0CC4T66y8TvUytkEGo,56265
287
291
  mlrun/serving/utils.py,sha256=WO0n_YTO0YVPTjp_90zxRl4vey4flDgw5vaOHK5p_qY,3871
288
292
  mlrun/serving/v1_serving.py,sha256=by4myxlnwyZ0ijQ5fURilGCK1sUpdQL2Il1VR3Xqpxg,11805
289
293
  mlrun/serving/v2_serving.py,sha256=z1jTy0ObRFpV5nxMk-FGL2PoTQf-L01sYjfdA6_NqJc,23559
@@ -298,7 +302,7 @@ mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,34
298
302
  mlrun/utils/clones.py,sha256=mJpx4nyFiY6jlBCvFABsNuyi_mr1mvfPWn81vlafpOU,7361
299
303
  mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
300
304
  mlrun/utils/db.py,sha256=KEa-vzicUhzIwo1wBXax2ZuXtYgf5to7wnsY3CYCiOQ,1713
301
- mlrun/utils/helpers.py,sha256=guQSdMvQT8KdS2_LHXe0C9pTEC56XtsWNMliSI0i5CQ,51162
305
+ mlrun/utils/helpers.py,sha256=k69jVSFghCWS_UyScr76reHl5AxNq1TKBOK7dfnYY7Q,52095
302
306
  mlrun/utils/http.py,sha256=mQqnCsdsg9_q2WIbgoEKGQpMesslb0ErvbwYV-htarw,8700
303
307
  mlrun/utils/logger.py,sha256=6-XMv1ucg9NqTstLpiji9qb06XHpx2LvNA8JxU1J5Tk,8133
304
308
  mlrun/utils/regex.py,sha256=Nd7xnDHU9PEOsse6rFwLNVgU4AaYCyuwMmQ9qgx2-Vw,4581
@@ -316,11 +320,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=d47s-fW4TgqOJZOSdmzBQvd
316
320
  mlrun/utils/notifications/notification/slack.py,sha256=5JysqIpUYUZKXPSeeZtbl7qb2L9dj7p2NvnEBcEsZkA,3898
317
321
  mlrun/utils/notifications/notification/webhook.py,sha256=QHezCuN5uXkLcroAGxGrhGHaxAdUvkDLIsp27_Yrfd4,2390
318
322
  mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
319
- mlrun/utils/version/version.json,sha256=ILF1rc0HYdLIjaV0EoivXDa8o11QVEm_vR_0HbZkVBA,88
323
+ mlrun/utils/version/version.json,sha256=TnN6nW9a4k4AQnZGiQygqhQeWdt1ELZw03VIFsr4QUk,88
320
324
  mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
321
- mlrun-1.7.0rc6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
322
- mlrun-1.7.0rc6.dist-info/METADATA,sha256=aTGZl-fqFbpXsw_iPz64qD7nl2dBrtDqZuuxItHHQ3Q,18263
323
- mlrun-1.7.0rc6.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
324
- mlrun-1.7.0rc6.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
325
- mlrun-1.7.0rc6.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
326
- mlrun-1.7.0rc6.dist-info/RECORD,,
325
+ mlrun-1.7.0rc7.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
326
+ mlrun-1.7.0rc7.dist-info/METADATA,sha256=eu82u1btwz6Wl2LRO_7J6tv-8Cl8d6DjbH4uFBJsylg,18719
327
+ mlrun-1.7.0rc7.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
328
+ mlrun-1.7.0rc7.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
329
+ mlrun-1.7.0rc7.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
330
+ mlrun-1.7.0rc7.dist-info/RECORD,,