mlrun 1.7.2rc3__py3-none-any.whl → 1.8.0__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/__init__.py +26 -22
- mlrun/__main__.py +15 -16
- mlrun/alerts/alert.py +150 -15
- mlrun/api/schemas/__init__.py +1 -9
- mlrun/artifacts/__init__.py +2 -3
- mlrun/artifacts/base.py +62 -19
- mlrun/artifacts/dataset.py +17 -17
- mlrun/artifacts/document.py +454 -0
- mlrun/artifacts/manager.py +28 -18
- mlrun/artifacts/model.py +91 -59
- mlrun/artifacts/plots.py +2 -2
- mlrun/common/constants.py +8 -0
- mlrun/common/formatters/__init__.py +1 -0
- mlrun/common/formatters/artifact.py +1 -1
- mlrun/common/formatters/feature_set.py +2 -0
- mlrun/common/formatters/function.py +1 -0
- mlrun/{model_monitoring/db/stores/v3io_kv/__init__.py → common/formatters/model_endpoint.py} +17 -0
- mlrun/common/formatters/pipeline.py +1 -2
- mlrun/common/formatters/project.py +9 -0
- mlrun/common/model_monitoring/__init__.py +0 -5
- mlrun/common/model_monitoring/helpers.py +12 -62
- mlrun/common/runtimes/constants.py +25 -4
- mlrun/common/schemas/__init__.py +9 -5
- mlrun/common/schemas/alert.py +114 -19
- mlrun/common/schemas/api_gateway.py +3 -3
- mlrun/common/schemas/artifact.py +22 -9
- mlrun/common/schemas/auth.py +8 -4
- mlrun/common/schemas/background_task.py +7 -7
- mlrun/common/schemas/client_spec.py +4 -4
- mlrun/common/schemas/clusterization_spec.py +2 -2
- mlrun/common/schemas/common.py +53 -3
- mlrun/common/schemas/constants.py +15 -0
- mlrun/common/schemas/datastore_profile.py +1 -1
- mlrun/common/schemas/feature_store.py +9 -9
- mlrun/common/schemas/frontend_spec.py +4 -4
- mlrun/common/schemas/function.py +10 -10
- mlrun/common/schemas/hub.py +1 -1
- mlrun/common/schemas/k8s.py +3 -3
- mlrun/common/schemas/memory_reports.py +3 -3
- mlrun/common/schemas/model_monitoring/__init__.py +4 -8
- mlrun/common/schemas/model_monitoring/constants.py +127 -46
- mlrun/common/schemas/model_monitoring/grafana.py +18 -12
- mlrun/common/schemas/model_monitoring/model_endpoints.py +154 -160
- mlrun/common/schemas/notification.py +24 -3
- mlrun/common/schemas/object.py +1 -1
- mlrun/common/schemas/pagination.py +4 -4
- mlrun/common/schemas/partition.py +142 -0
- mlrun/common/schemas/pipeline.py +3 -3
- mlrun/common/schemas/project.py +26 -18
- mlrun/common/schemas/runs.py +3 -3
- mlrun/common/schemas/runtime_resource.py +5 -5
- mlrun/common/schemas/schedule.py +1 -1
- mlrun/common/schemas/secret.py +1 -1
- mlrun/{model_monitoring/db/stores/sqldb/__init__.py → common/schemas/serving.py} +10 -1
- mlrun/common/schemas/tag.py +3 -3
- mlrun/common/schemas/workflow.py +6 -5
- mlrun/common/types.py +1 -0
- mlrun/config.py +157 -89
- mlrun/data_types/__init__.py +5 -3
- mlrun/data_types/infer.py +13 -3
- mlrun/data_types/spark.py +2 -1
- mlrun/datastore/__init__.py +59 -18
- mlrun/datastore/alibaba_oss.py +4 -1
- mlrun/datastore/azure_blob.py +4 -1
- mlrun/datastore/base.py +19 -24
- mlrun/datastore/datastore.py +10 -4
- mlrun/datastore/datastore_profile.py +178 -45
- mlrun/datastore/dbfs_store.py +4 -1
- mlrun/datastore/filestore.py +4 -1
- mlrun/datastore/google_cloud_storage.py +4 -1
- mlrun/datastore/hdfs.py +4 -1
- mlrun/datastore/inmem.py +4 -1
- mlrun/datastore/redis.py +4 -1
- mlrun/datastore/s3.py +14 -3
- mlrun/datastore/sources.py +89 -92
- mlrun/datastore/store_resources.py +7 -4
- mlrun/datastore/storeytargets.py +51 -16
- mlrun/datastore/targets.py +38 -31
- mlrun/datastore/utils.py +87 -4
- mlrun/datastore/v3io.py +4 -1
- mlrun/datastore/vectorstore.py +291 -0
- mlrun/datastore/wasbfs/fs.py +13 -12
- mlrun/db/base.py +286 -100
- mlrun/db/httpdb.py +1562 -490
- mlrun/db/nopdb.py +250 -83
- mlrun/errors.py +6 -2
- mlrun/execution.py +194 -50
- mlrun/feature_store/__init__.py +2 -10
- mlrun/feature_store/api.py +20 -458
- mlrun/feature_store/common.py +9 -9
- mlrun/feature_store/feature_set.py +20 -18
- mlrun/feature_store/feature_vector.py +105 -479
- mlrun/feature_store/feature_vector_utils.py +466 -0
- mlrun/feature_store/retrieval/base.py +15 -11
- mlrun/feature_store/retrieval/job.py +2 -1
- mlrun/feature_store/retrieval/storey_merger.py +1 -1
- mlrun/feature_store/steps.py +3 -3
- mlrun/features.py +30 -13
- mlrun/frameworks/__init__.py +1 -2
- mlrun/frameworks/_common/__init__.py +1 -2
- mlrun/frameworks/_common/artifacts_library.py +2 -2
- mlrun/frameworks/_common/mlrun_interface.py +10 -6
- mlrun/frameworks/_common/model_handler.py +31 -31
- mlrun/frameworks/_common/producer.py +3 -1
- mlrun/frameworks/_dl_common/__init__.py +1 -2
- mlrun/frameworks/_dl_common/loggers/__init__.py +1 -2
- mlrun/frameworks/_dl_common/loggers/mlrun_logger.py +4 -4
- mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py +3 -3
- mlrun/frameworks/_ml_common/__init__.py +1 -2
- mlrun/frameworks/_ml_common/loggers/__init__.py +1 -2
- mlrun/frameworks/_ml_common/model_handler.py +21 -21
- mlrun/frameworks/_ml_common/plans/__init__.py +1 -2
- mlrun/frameworks/_ml_common/plans/confusion_matrix_plan.py +3 -1
- mlrun/frameworks/_ml_common/plans/dataset_plan.py +3 -3
- mlrun/frameworks/_ml_common/plans/roc_curve_plan.py +4 -4
- mlrun/frameworks/auto_mlrun/__init__.py +1 -2
- mlrun/frameworks/auto_mlrun/auto_mlrun.py +22 -15
- mlrun/frameworks/huggingface/__init__.py +1 -2
- mlrun/frameworks/huggingface/model_server.py +9 -9
- mlrun/frameworks/lgbm/__init__.py +47 -44
- mlrun/frameworks/lgbm/callbacks/__init__.py +1 -2
- mlrun/frameworks/lgbm/callbacks/logging_callback.py +4 -2
- mlrun/frameworks/lgbm/callbacks/mlrun_logging_callback.py +4 -2
- mlrun/frameworks/lgbm/mlrun_interfaces/__init__.py +1 -2
- mlrun/frameworks/lgbm/mlrun_interfaces/mlrun_interface.py +5 -5
- mlrun/frameworks/lgbm/model_handler.py +15 -11
- mlrun/frameworks/lgbm/model_server.py +11 -7
- mlrun/frameworks/lgbm/utils.py +2 -2
- mlrun/frameworks/onnx/__init__.py +1 -2
- mlrun/frameworks/onnx/dataset.py +3 -3
- mlrun/frameworks/onnx/mlrun_interface.py +2 -2
- mlrun/frameworks/onnx/model_handler.py +7 -5
- mlrun/frameworks/onnx/model_server.py +8 -6
- mlrun/frameworks/parallel_coordinates.py +11 -11
- mlrun/frameworks/pytorch/__init__.py +22 -23
- mlrun/frameworks/pytorch/callbacks/__init__.py +1 -2
- mlrun/frameworks/pytorch/callbacks/callback.py +2 -1
- mlrun/frameworks/pytorch/callbacks/logging_callback.py +15 -8
- mlrun/frameworks/pytorch/callbacks/mlrun_logging_callback.py +19 -12
- mlrun/frameworks/pytorch/callbacks/tensorboard_logging_callback.py +22 -15
- mlrun/frameworks/pytorch/callbacks_handler.py +36 -30
- mlrun/frameworks/pytorch/mlrun_interface.py +17 -17
- mlrun/frameworks/pytorch/model_handler.py +21 -17
- mlrun/frameworks/pytorch/model_server.py +13 -9
- mlrun/frameworks/sklearn/__init__.py +19 -18
- mlrun/frameworks/sklearn/estimator.py +2 -2
- mlrun/frameworks/sklearn/metric.py +3 -3
- mlrun/frameworks/sklearn/metrics_library.py +8 -6
- mlrun/frameworks/sklearn/mlrun_interface.py +3 -2
- mlrun/frameworks/sklearn/model_handler.py +4 -3
- mlrun/frameworks/tf_keras/__init__.py +11 -12
- mlrun/frameworks/tf_keras/callbacks/__init__.py +1 -2
- mlrun/frameworks/tf_keras/callbacks/logging_callback.py +17 -14
- mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py +15 -12
- mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py +21 -18
- mlrun/frameworks/tf_keras/model_handler.py +17 -13
- mlrun/frameworks/tf_keras/model_server.py +12 -8
- mlrun/frameworks/xgboost/__init__.py +19 -18
- mlrun/frameworks/xgboost/model_handler.py +13 -9
- mlrun/k8s_utils.py +2 -5
- mlrun/launcher/base.py +3 -4
- mlrun/launcher/client.py +2 -2
- mlrun/launcher/local.py +6 -2
- mlrun/launcher/remote.py +1 -1
- mlrun/lists.py +8 -4
- mlrun/model.py +132 -46
- mlrun/model_monitoring/__init__.py +3 -5
- mlrun/model_monitoring/api.py +113 -98
- mlrun/model_monitoring/applications/__init__.py +0 -5
- mlrun/model_monitoring/applications/_application_steps.py +81 -50
- mlrun/model_monitoring/applications/base.py +467 -14
- mlrun/model_monitoring/applications/context.py +212 -134
- mlrun/model_monitoring/{db/stores/base → applications/evidently}/__init__.py +6 -2
- mlrun/model_monitoring/applications/evidently/base.py +146 -0
- mlrun/model_monitoring/applications/histogram_data_drift.py +89 -56
- mlrun/model_monitoring/applications/results.py +67 -15
- mlrun/model_monitoring/controller.py +701 -315
- mlrun/model_monitoring/db/__init__.py +0 -2
- mlrun/model_monitoring/db/_schedules.py +242 -0
- mlrun/model_monitoring/db/_stats.py +189 -0
- mlrun/model_monitoring/db/tsdb/__init__.py +33 -22
- mlrun/model_monitoring/db/tsdb/base.py +243 -49
- mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +76 -36
- mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py +33 -0
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connection.py +213 -0
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +534 -88
- mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py +1 -0
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +436 -106
- mlrun/model_monitoring/helpers.py +356 -114
- mlrun/model_monitoring/stream_processing.py +190 -345
- mlrun/model_monitoring/tracking_policy.py +11 -4
- mlrun/model_monitoring/writer.py +49 -90
- mlrun/package/__init__.py +3 -6
- mlrun/package/context_handler.py +2 -2
- mlrun/package/packager.py +12 -9
- mlrun/package/packagers/__init__.py +0 -2
- mlrun/package/packagers/default_packager.py +14 -11
- mlrun/package/packagers/numpy_packagers.py +16 -7
- mlrun/package/packagers/pandas_packagers.py +18 -18
- mlrun/package/packagers/python_standard_library_packagers.py +25 -11
- mlrun/package/packagers_manager.py +35 -32
- mlrun/package/utils/__init__.py +0 -3
- mlrun/package/utils/_pickler.py +6 -6
- mlrun/platforms/__init__.py +47 -16
- mlrun/platforms/iguazio.py +4 -1
- mlrun/projects/operations.py +30 -30
- mlrun/projects/pipelines.py +116 -47
- mlrun/projects/project.py +1292 -329
- mlrun/render.py +5 -9
- mlrun/run.py +57 -14
- mlrun/runtimes/__init__.py +1 -3
- mlrun/runtimes/base.py +30 -22
- mlrun/runtimes/daskjob.py +9 -9
- mlrun/runtimes/databricks_job/databricks_runtime.py +6 -5
- mlrun/runtimes/function_reference.py +5 -2
- mlrun/runtimes/generators.py +3 -2
- mlrun/runtimes/kubejob.py +6 -7
- mlrun/runtimes/mounts.py +574 -0
- mlrun/runtimes/mpijob/__init__.py +0 -2
- mlrun/runtimes/mpijob/abstract.py +7 -6
- mlrun/runtimes/nuclio/api_gateway.py +7 -7
- mlrun/runtimes/nuclio/application/application.py +11 -13
- mlrun/runtimes/nuclio/application/reverse_proxy.go +66 -64
- mlrun/runtimes/nuclio/function.py +127 -70
- mlrun/runtimes/nuclio/serving.py +105 -37
- mlrun/runtimes/pod.py +159 -54
- mlrun/runtimes/remotesparkjob.py +3 -2
- mlrun/runtimes/sparkjob/__init__.py +0 -2
- mlrun/runtimes/sparkjob/spark3job.py +22 -12
- mlrun/runtimes/utils.py +7 -6
- mlrun/secrets.py +2 -2
- mlrun/serving/__init__.py +8 -0
- mlrun/serving/merger.py +7 -5
- mlrun/serving/remote.py +35 -22
- mlrun/serving/routers.py +186 -240
- mlrun/serving/server.py +41 -10
- mlrun/serving/states.py +432 -118
- mlrun/serving/utils.py +13 -2
- mlrun/serving/v1_serving.py +3 -2
- mlrun/serving/v2_serving.py +161 -203
- mlrun/track/__init__.py +1 -1
- mlrun/track/tracker.py +2 -2
- mlrun/track/trackers/mlflow_tracker.py +6 -5
- mlrun/utils/async_http.py +35 -22
- mlrun/utils/clones.py +7 -4
- mlrun/utils/helpers.py +511 -58
- mlrun/utils/logger.py +119 -13
- mlrun/utils/notifications/notification/__init__.py +22 -19
- mlrun/utils/notifications/notification/base.py +39 -15
- mlrun/utils/notifications/notification/console.py +6 -6
- mlrun/utils/notifications/notification/git.py +11 -11
- mlrun/utils/notifications/notification/ipython.py +10 -9
- mlrun/utils/notifications/notification/mail.py +176 -0
- mlrun/utils/notifications/notification/slack.py +16 -8
- mlrun/utils/notifications/notification/webhook.py +24 -8
- mlrun/utils/notifications/notification_pusher.py +191 -200
- mlrun/utils/regex.py +12 -2
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.7.2rc3.dist-info → mlrun-1.8.0.dist-info}/METADATA +81 -54
- mlrun-1.8.0.dist-info/RECORD +351 -0
- {mlrun-1.7.2rc3.dist-info → mlrun-1.8.0.dist-info}/WHEEL +1 -1
- mlrun/model_monitoring/applications/evidently_base.py +0 -137
- mlrun/model_monitoring/db/stores/__init__.py +0 -136
- mlrun/model_monitoring/db/stores/base/store.py +0 -213
- mlrun/model_monitoring/db/stores/sqldb/models/__init__.py +0 -71
- mlrun/model_monitoring/db/stores/sqldb/models/base.py +0 -190
- mlrun/model_monitoring/db/stores/sqldb/models/mysql.py +0 -103
- mlrun/model_monitoring/db/stores/sqldb/models/sqlite.py +0 -40
- mlrun/model_monitoring/db/stores/sqldb/sql_store.py +0 -659
- mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py +0 -726
- mlrun/model_monitoring/model_endpoint.py +0 -118
- mlrun-1.7.2rc3.dist-info/RECORD +0 -351
- {mlrun-1.7.2rc3.dist-info → mlrun-1.8.0.dist-info}/entry_points.txt +0 -0
- {mlrun-1.7.2rc3.dist-info → mlrun-1.8.0.dist-info/licenses}/LICENSE +0 -0
- {mlrun-1.7.2rc3.dist-info → mlrun-1.8.0.dist-info}/top_level.txt +0 -0
mlrun/utils/regex.py
CHANGED
|
@@ -86,7 +86,7 @@ tag_name = label_value
|
|
|
86
86
|
|
|
87
87
|
secret_key = k8s_secret_and_config_map_key
|
|
88
88
|
|
|
89
|
-
artifact_key = [r"[
|
|
89
|
+
artifact_key = [r"^[A-Za-z0-9]([-A-Za-z0-9_.]*[A-Za-z0-9])?$"]
|
|
90
90
|
|
|
91
91
|
# must not start with _
|
|
92
92
|
# must be alphanumeric or _
|
|
@@ -96,8 +96,18 @@ v3io_stream_consumer_group = [r"^(?!_)[a-zA-Z0-9_]{1,256}$"]
|
|
|
96
96
|
# URI patterns
|
|
97
97
|
run_uri_pattern = r"^(?P<project>.*)@(?P<uid>.*)\#(?P<iteration>.*?)(:(?P<tag>.*))?$"
|
|
98
98
|
|
|
99
|
-
artifact_uri_pattern =
|
|
99
|
+
artifact_uri_pattern = (
|
|
100
|
+
r"^((?P<project>.*)/)?" # Optional project
|
|
101
|
+
r"(?P<key>.*?)" # Key
|
|
102
|
+
r"(\#(?P<iteration>.*?))?" # Optional iteration
|
|
103
|
+
r"(:(?P<tag>.*?))?" # Optional tag
|
|
104
|
+
r"(@(?P<tree>.*?))?" # Optional tree
|
|
105
|
+
r"(\^(?P<uid>.*))?$" # Optional uid
|
|
106
|
+
)
|
|
100
107
|
|
|
101
108
|
artifact_producer_uri_pattern = (
|
|
102
109
|
r"^((?P<project>.*)/)?(?P<uid>.*?)(\-(?P<iteration>.*?))?$"
|
|
103
110
|
)
|
|
111
|
+
|
|
112
|
+
mail_regex = r"^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$"
|
|
113
|
+
alert_name_regex = r"^[a-zA-Z0-9-_]+$"
|
mlrun/utils/version/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.8.0
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -23,35 +23,38 @@ Description-Content-Type: text/markdown
|
|
|
23
23
|
License-File: LICENSE
|
|
24
24
|
Requires-Dist: urllib3<1.27,>=1.26.9
|
|
25
25
|
Requires-Dist: GitPython>=3.1.41,~=3.1
|
|
26
|
-
Requires-Dist: aiohttp
|
|
27
|
-
Requires-Dist: aiohttp-retry~=2.
|
|
26
|
+
Requires-Dist: aiohttp~=3.11
|
|
27
|
+
Requires-Dist: aiohttp-retry~=2.9
|
|
28
28
|
Requires-Dist: click~=8.1
|
|
29
29
|
Requires-Dist: nest-asyncio~=1.0
|
|
30
30
|
Requires-Dist: ipython~=8.10
|
|
31
|
-
Requires-Dist: nuclio-jupyter~=0.
|
|
32
|
-
Requires-Dist: numpy<1.27.0,>=1.
|
|
31
|
+
Requires-Dist: nuclio-jupyter~=0.11.1
|
|
32
|
+
Requires-Dist: numpy<1.27.0,>=1.26.4
|
|
33
33
|
Requires-Dist: pandas<2.2,>=1.2
|
|
34
|
-
Requires-Dist: pyarrow<
|
|
35
|
-
Requires-Dist: pyyaml<7,>=
|
|
34
|
+
Requires-Dist: pyarrow<17,>=10.0
|
|
35
|
+
Requires-Dist: pyyaml<7,>=6.0.2
|
|
36
36
|
Requires-Dist: requests~=2.32
|
|
37
37
|
Requires-Dist: tabulate~=0.8.6
|
|
38
38
|
Requires-Dist: v3io~=0.6.9
|
|
39
|
-
Requires-Dist: pydantic
|
|
39
|
+
Requires-Dist: pydantic>=1.10.15
|
|
40
40
|
Requires-Dist: mergedeep~=1.3
|
|
41
|
-
Requires-Dist: v3io-frames~=0.10.14
|
|
41
|
+
Requires-Dist: v3io-frames~=0.10.14; python_version < "3.11"
|
|
42
|
+
Requires-Dist: v3io-frames>=0.13.0; python_version >= "3.11"
|
|
42
43
|
Requires-Dist: semver~=3.0
|
|
43
44
|
Requires-Dist: dependency-injector~=4.41
|
|
44
45
|
Requires-Dist: fsspec<2024.7,>=2023.9.2
|
|
45
46
|
Requires-Dist: v3iofs~=0.1.17
|
|
46
|
-
Requires-Dist: storey~=1.
|
|
47
|
+
Requires-Dist: storey~=1.8.11
|
|
47
48
|
Requires-Dist: inflection~=0.5.0
|
|
48
|
-
Requires-Dist: python-dotenv~=
|
|
49
|
-
Requires-Dist: setuptools
|
|
49
|
+
Requires-Dist: python-dotenv~=1.0
|
|
50
|
+
Requires-Dist: setuptools>=75.2
|
|
50
51
|
Requires-Dist: deprecated~=1.2
|
|
51
52
|
Requires-Dist: jinja2>=3.1.3,~=3.1
|
|
52
53
|
Requires-Dist: orjson<4,>=3.9.15
|
|
53
|
-
Requires-Dist: mlrun-pipelines-kfp-common~=0.
|
|
54
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.
|
|
54
|
+
Requires-Dist: mlrun-pipelines-kfp-common~=0.3.15
|
|
55
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.3.10; python_version < "3.11"
|
|
56
|
+
Requires-Dist: docstring_parser~=0.16
|
|
57
|
+
Requires-Dist: aiosmtplib~=3.0
|
|
55
58
|
Provides-Extra: s3
|
|
56
59
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "s3"
|
|
57
60
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "s3"
|
|
@@ -65,8 +68,6 @@ Provides-Extra: azure-key-vault
|
|
|
65
68
|
Requires-Dist: azure-identity~=1.5; extra == "azure-key-vault"
|
|
66
69
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "azure-key-vault"
|
|
67
70
|
Requires-Dist: pyopenssl>=23; extra == "azure-key-vault"
|
|
68
|
-
Provides-Extra: bokeh
|
|
69
|
-
Requires-Dist: bokeh>=2.4.2,~=2.4; extra == "bokeh"
|
|
70
71
|
Provides-Extra: plotly
|
|
71
72
|
Requires-Dist: plotly~=5.23; extra == "plotly"
|
|
72
73
|
Provides-Extra: graphviz
|
|
@@ -78,40 +79,47 @@ Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "google-cloud"
|
|
|
78
79
|
Requires-Dist: google-cloud==0.34; extra == "google-cloud"
|
|
79
80
|
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "google-cloud"
|
|
80
81
|
Provides-Extra: kafka
|
|
81
|
-
Requires-Dist: kafka-python~=2.0; extra == "kafka"
|
|
82
|
+
Requires-Dist: kafka-python~=2.1.0; extra == "kafka"
|
|
82
83
|
Requires-Dist: avro~=1.11; extra == "kafka"
|
|
83
84
|
Provides-Extra: redis
|
|
84
85
|
Requires-Dist: redis~=4.3; extra == "redis"
|
|
85
86
|
Provides-Extra: mlflow
|
|
86
|
-
Requires-Dist: mlflow~=2.
|
|
87
|
+
Requires-Dist: mlflow~=2.16; extra == "mlflow"
|
|
87
88
|
Provides-Extra: databricks-sdk
|
|
88
|
-
Requires-Dist: databricks-sdk~=0.
|
|
89
|
+
Requires-Dist: databricks-sdk~=0.20.0; extra == "databricks-sdk"
|
|
89
90
|
Provides-Extra: sqlalchemy
|
|
90
91
|
Requires-Dist: sqlalchemy~=1.4; extra == "sqlalchemy"
|
|
91
92
|
Provides-Extra: dask
|
|
92
|
-
Requires-Dist: dask~=
|
|
93
|
-
Requires-Dist: distributed~=
|
|
93
|
+
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "dask"
|
|
94
|
+
Requires-Dist: distributed~=2024.12.1; python_version >= "3.11" and extra == "dask"
|
|
95
|
+
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "dask"
|
|
96
|
+
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "dask"
|
|
94
97
|
Provides-Extra: alibaba-oss
|
|
95
98
|
Requires-Dist: ossfs==2023.12.0; extra == "alibaba-oss"
|
|
96
99
|
Requires-Dist: oss2==2.18.1; extra == "alibaba-oss"
|
|
97
100
|
Provides-Extra: tdengine
|
|
98
101
|
Requires-Dist: taos-ws-py==0.3.2; extra == "tdengine"
|
|
99
|
-
Requires-Dist: taoswswrap~=0.2.0; extra == "tdengine"
|
|
100
102
|
Provides-Extra: snowflake
|
|
101
103
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "snowflake"
|
|
104
|
+
Provides-Extra: kfp18
|
|
105
|
+
Requires-Dist: mlrun_pipelines_kfp_v1_8[kfp]>=0.3.2; python_version < "3.11" and extra == "kfp18"
|
|
102
106
|
Provides-Extra: api
|
|
103
|
-
Requires-Dist: uvicorn~=0.
|
|
107
|
+
Requires-Dist: uvicorn~=0.32.1; extra == "api"
|
|
104
108
|
Requires-Dist: dask-kubernetes~=0.11.0; extra == "api"
|
|
105
|
-
Requires-Dist: apscheduler
|
|
109
|
+
Requires-Dist: apscheduler<4,>=3.11; extra == "api"
|
|
106
110
|
Requires-Dist: objgraph~=3.6; extra == "api"
|
|
107
|
-
Requires-Dist: igz-mgmt~=0.
|
|
111
|
+
Requires-Dist: igz-mgmt~=0.4.1; extra == "api"
|
|
108
112
|
Requires-Dist: humanfriendly~=10.0; extra == "api"
|
|
109
|
-
Requires-Dist: fastapi~=0.
|
|
113
|
+
Requires-Dist: fastapi~=0.115.6; extra == "api"
|
|
110
114
|
Requires-Dist: sqlalchemy~=1.4; extra == "api"
|
|
111
|
-
Requires-Dist: pymysql~=1.
|
|
112
|
-
Requires-Dist: alembic~=1.
|
|
115
|
+
Requires-Dist: pymysql~=1.1; extra == "api"
|
|
116
|
+
Requires-Dist: alembic~=1.14; extra == "api"
|
|
113
117
|
Requires-Dist: timelength~=1.1; extra == "api"
|
|
114
118
|
Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "api"
|
|
119
|
+
Requires-Dist: aiosmtplib~=3.0; extra == "api"
|
|
120
|
+
Requires-Dist: pydantic<2,>=1; extra == "api"
|
|
121
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8[kfp]~=0.3.10; python_version < "3.11" and extra == "api"
|
|
122
|
+
Requires-Dist: grpcio~=1.70.0; extra == "api"
|
|
115
123
|
Provides-Extra: all
|
|
116
124
|
Requires-Dist: adlfs==2023.9.0; extra == "all"
|
|
117
125
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "all"
|
|
@@ -119,19 +127,20 @@ Requires-Dist: avro~=1.11; extra == "all"
|
|
|
119
127
|
Requires-Dist: azure-core~=1.24; extra == "all"
|
|
120
128
|
Requires-Dist: azure-identity~=1.5; extra == "all"
|
|
121
129
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "all"
|
|
122
|
-
Requires-Dist: bokeh>=2.4.2,~=2.4; extra == "all"
|
|
123
130
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "all"
|
|
124
|
-
Requires-Dist: dask~=2023.12.1; extra == "all"
|
|
125
|
-
Requires-Dist:
|
|
126
|
-
Requires-Dist:
|
|
131
|
+
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "all"
|
|
132
|
+
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "all"
|
|
133
|
+
Requires-Dist: databricks-sdk~=0.20.0; extra == "all"
|
|
134
|
+
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "all"
|
|
135
|
+
Requires-Dist: distributed~=2024.12.1; python_version >= "3.11" and extra == "all"
|
|
127
136
|
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "all"
|
|
128
137
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "all"
|
|
129
138
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "all"
|
|
130
139
|
Requires-Dist: google-cloud-storage==2.14.0; extra == "all"
|
|
131
140
|
Requires-Dist: google-cloud==0.34; extra == "all"
|
|
132
141
|
Requires-Dist: graphviz~=0.20.0; extra == "all"
|
|
133
|
-
Requires-Dist: kafka-python~=2.0; extra == "all"
|
|
134
|
-
Requires-Dist: mlflow~=2.
|
|
142
|
+
Requires-Dist: kafka-python~=2.1.0; extra == "all"
|
|
143
|
+
Requires-Dist: mlflow~=2.16; extra == "all"
|
|
135
144
|
Requires-Dist: msrest~=0.6.21; extra == "all"
|
|
136
145
|
Requires-Dist: oss2==2.18.1; extra == "all"
|
|
137
146
|
Requires-Dist: ossfs==2023.12.0; extra == "all"
|
|
@@ -142,7 +151,6 @@ Requires-Dist: s3fs<2024.7,>=2023.9.2; extra == "all"
|
|
|
142
151
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "all"
|
|
143
152
|
Requires-Dist: sqlalchemy~=1.4; extra == "all"
|
|
144
153
|
Requires-Dist: taos-ws-py==0.3.2; extra == "all"
|
|
145
|
-
Requires-Dist: taoswswrap~=0.2.0; extra == "all"
|
|
146
154
|
Provides-Extra: complete
|
|
147
155
|
Requires-Dist: adlfs==2023.9.0; extra == "complete"
|
|
148
156
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "complete"
|
|
@@ -151,17 +159,19 @@ Requires-Dist: azure-core~=1.24; extra == "complete"
|
|
|
151
159
|
Requires-Dist: azure-identity~=1.5; extra == "complete"
|
|
152
160
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "complete"
|
|
153
161
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "complete"
|
|
154
|
-
Requires-Dist: dask~=2023.12.1; extra == "complete"
|
|
155
|
-
Requires-Dist:
|
|
156
|
-
Requires-Dist:
|
|
162
|
+
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "complete"
|
|
163
|
+
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "complete"
|
|
164
|
+
Requires-Dist: databricks-sdk~=0.20.0; extra == "complete"
|
|
165
|
+
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "complete"
|
|
166
|
+
Requires-Dist: distributed~=2024.12.1; python_version >= "3.11" and extra == "complete"
|
|
157
167
|
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "complete"
|
|
158
168
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete"
|
|
159
169
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "complete"
|
|
160
170
|
Requires-Dist: google-cloud-storage==2.14.0; extra == "complete"
|
|
161
171
|
Requires-Dist: google-cloud==0.34; extra == "complete"
|
|
162
172
|
Requires-Dist: graphviz~=0.20.0; extra == "complete"
|
|
163
|
-
Requires-Dist: kafka-python~=2.0; extra == "complete"
|
|
164
|
-
Requires-Dist: mlflow~=2.
|
|
173
|
+
Requires-Dist: kafka-python~=2.1.0; extra == "complete"
|
|
174
|
+
Requires-Dist: mlflow~=2.16; extra == "complete"
|
|
165
175
|
Requires-Dist: msrest~=0.6.21; extra == "complete"
|
|
166
176
|
Requires-Dist: oss2==2.18.1; extra == "complete"
|
|
167
177
|
Requires-Dist: ossfs==2023.12.0; extra == "complete"
|
|
@@ -172,48 +182,65 @@ Requires-Dist: s3fs<2024.7,>=2023.9.2; extra == "complete"
|
|
|
172
182
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "complete"
|
|
173
183
|
Requires-Dist: sqlalchemy~=1.4; extra == "complete"
|
|
174
184
|
Requires-Dist: taos-ws-py==0.3.2; extra == "complete"
|
|
175
|
-
Requires-Dist: taoswswrap~=0.2.0; extra == "complete"
|
|
176
185
|
Provides-Extra: complete-api
|
|
177
186
|
Requires-Dist: adlfs==2023.9.0; extra == "complete-api"
|
|
178
187
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "complete-api"
|
|
179
|
-
Requires-Dist:
|
|
180
|
-
Requires-Dist:
|
|
188
|
+
Requires-Dist: aiosmtplib~=3.0; extra == "complete-api"
|
|
189
|
+
Requires-Dist: alembic~=1.14; extra == "complete-api"
|
|
190
|
+
Requires-Dist: apscheduler<4,>=3.11; extra == "complete-api"
|
|
181
191
|
Requires-Dist: avro~=1.11; extra == "complete-api"
|
|
182
192
|
Requires-Dist: azure-core~=1.24; extra == "complete-api"
|
|
183
193
|
Requires-Dist: azure-identity~=1.5; extra == "complete-api"
|
|
184
194
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "complete-api"
|
|
185
195
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "complete-api"
|
|
186
196
|
Requires-Dist: dask-kubernetes~=0.11.0; extra == "complete-api"
|
|
187
|
-
Requires-Dist: dask~=2023.12.1; extra == "complete-api"
|
|
188
|
-
Requires-Dist:
|
|
189
|
-
Requires-Dist:
|
|
190
|
-
Requires-Dist:
|
|
197
|
+
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "complete-api"
|
|
198
|
+
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "complete-api"
|
|
199
|
+
Requires-Dist: databricks-sdk~=0.20.0; extra == "complete-api"
|
|
200
|
+
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "complete-api"
|
|
201
|
+
Requires-Dist: distributed~=2024.12.1; python_version >= "3.11" and extra == "complete-api"
|
|
202
|
+
Requires-Dist: fastapi~=0.115.6; extra == "complete-api"
|
|
191
203
|
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "complete-api"
|
|
192
204
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete-api"
|
|
193
205
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "complete-api"
|
|
194
206
|
Requires-Dist: google-cloud-storage==2.14.0; extra == "complete-api"
|
|
195
207
|
Requires-Dist: google-cloud==0.34; extra == "complete-api"
|
|
196
208
|
Requires-Dist: graphviz~=0.20.0; extra == "complete-api"
|
|
209
|
+
Requires-Dist: grpcio~=1.70.0; extra == "complete-api"
|
|
197
210
|
Requires-Dist: humanfriendly~=10.0; extra == "complete-api"
|
|
198
|
-
Requires-Dist: igz-mgmt~=0.
|
|
199
|
-
Requires-Dist: kafka-python~=2.0; extra == "complete-api"
|
|
211
|
+
Requires-Dist: igz-mgmt~=0.4.1; extra == "complete-api"
|
|
212
|
+
Requires-Dist: kafka-python~=2.1.0; extra == "complete-api"
|
|
200
213
|
Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "complete-api"
|
|
201
|
-
Requires-Dist: mlflow~=2.
|
|
214
|
+
Requires-Dist: mlflow~=2.16; extra == "complete-api"
|
|
215
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8[kfp]~=0.3.10; python_version < "3.11" and extra == "complete-api"
|
|
202
216
|
Requires-Dist: msrest~=0.6.21; extra == "complete-api"
|
|
203
217
|
Requires-Dist: objgraph~=3.6; extra == "complete-api"
|
|
204
218
|
Requires-Dist: oss2==2.18.1; extra == "complete-api"
|
|
205
219
|
Requires-Dist: ossfs==2023.12.0; extra == "complete-api"
|
|
206
220
|
Requires-Dist: plotly~=5.23; extra == "complete-api"
|
|
207
|
-
Requires-Dist:
|
|
221
|
+
Requires-Dist: pydantic<2,>=1; extra == "complete-api"
|
|
222
|
+
Requires-Dist: pymysql~=1.1; extra == "complete-api"
|
|
208
223
|
Requires-Dist: pyopenssl>=23; extra == "complete-api"
|
|
209
224
|
Requires-Dist: redis~=4.3; extra == "complete-api"
|
|
210
225
|
Requires-Dist: s3fs<2024.7,>=2023.9.2; extra == "complete-api"
|
|
211
226
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "complete-api"
|
|
212
227
|
Requires-Dist: sqlalchemy~=1.4; extra == "complete-api"
|
|
213
228
|
Requires-Dist: taos-ws-py==0.3.2; extra == "complete-api"
|
|
214
|
-
Requires-Dist: taoswswrap~=0.2.0; extra == "complete-api"
|
|
215
229
|
Requires-Dist: timelength~=1.1; extra == "complete-api"
|
|
216
|
-
Requires-Dist: uvicorn~=0.
|
|
230
|
+
Requires-Dist: uvicorn~=0.32.1; extra == "complete-api"
|
|
231
|
+
Dynamic: author
|
|
232
|
+
Dynamic: author-email
|
|
233
|
+
Dynamic: classifier
|
|
234
|
+
Dynamic: description
|
|
235
|
+
Dynamic: description-content-type
|
|
236
|
+
Dynamic: home-page
|
|
237
|
+
Dynamic: keywords
|
|
238
|
+
Dynamic: license
|
|
239
|
+
Dynamic: license-file
|
|
240
|
+
Dynamic: provides-extra
|
|
241
|
+
Dynamic: requires-dist
|
|
242
|
+
Dynamic: requires-python
|
|
243
|
+
Dynamic: summary
|
|
217
244
|
|
|
218
245
|
<a id="top"></a>
|
|
219
246
|
[](https://github.com/mlrun/mlrun/actions/workflows/build.yaml?query=branch%3Adevelopment)
|