zenml-nightly 0.66.0.dev20240918__py3-none-any.whl → 0.66.0.dev20240923__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.
- zenml/VERSION +1 -1
- zenml/integrations/mlflow/__init__.py +14 -15
- zenml/zen_server/rbac/utils.py +6 -2
- {zenml_nightly-0.66.0.dev20240918.dist-info → zenml_nightly-0.66.0.dev20240923.dist-info}/METADATA +1 -1
- {zenml_nightly-0.66.0.dev20240918.dist-info → zenml_nightly-0.66.0.dev20240923.dist-info}/RECORD +8 -8
- {zenml_nightly-0.66.0.dev20240918.dist-info → zenml_nightly-0.66.0.dev20240923.dist-info}/LICENSE +0 -0
- {zenml_nightly-0.66.0.dev20240918.dist-info → zenml_nightly-0.66.0.dev20240923.dist-info}/WHEEL +0 -0
- {zenml_nightly-0.66.0.dev20240918.dist-info → zenml_nightly-0.66.0.dev20240923.dist-info}/entry_points.txt +0 -0
zenml/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.66.0.
|
1
|
+
0.66.0.dev20240923
|
@@ -37,20 +37,6 @@ class MlflowIntegration(Integration):
|
|
37
37
|
|
38
38
|
NAME = MLFLOW
|
39
39
|
|
40
|
-
REQUIREMENTS = [
|
41
|
-
"mlflow>=2.1.1,<3",
|
42
|
-
# TODO: remove this requirement once rapidjson is fixed
|
43
|
-
"python-rapidjson<1.15",
|
44
|
-
# When you do:
|
45
|
-
# pip install zenml
|
46
|
-
# You get all our required dependencies. However, if you follow it with:
|
47
|
-
# zenml integration install mlflow
|
48
|
-
# This downgrades pydantic to v1 even though mlflow does not have
|
49
|
-
# any issues with v2. This is why we have to pin it here so a downgrade
|
50
|
-
# will not happen.
|
51
|
-
"pydantic>=2.8.0,<2.9.0",
|
52
|
-
]
|
53
|
-
|
54
40
|
REQUIREMENTS_IGNORED_ON_UNINSTALL = [
|
55
41
|
"python-rapidjson",
|
56
42
|
"pydantic",
|
@@ -71,7 +57,20 @@ class MlflowIntegration(Integration):
|
|
71
57
|
from zenml.integrations.numpy import NumpyIntegration
|
72
58
|
from zenml.integrations.pandas import PandasIntegration
|
73
59
|
|
74
|
-
reqs =
|
60
|
+
reqs = [
|
61
|
+
"mlflow>=2.1.1,<3",
|
62
|
+
# TODO: remove this requirement once rapidjson is fixed
|
63
|
+
"python-rapidjson<1.15",
|
64
|
+
# When you do:
|
65
|
+
# pip install zenml
|
66
|
+
# You get all our required dependencies. However, if you follow it
|
67
|
+
# with:
|
68
|
+
# zenml integration install mlflow
|
69
|
+
# This downgrades pydantic to v1 even though mlflow does not have
|
70
|
+
# any issues with v2. This is why we have to pin it here so a
|
71
|
+
# downgrade will not happen.
|
72
|
+
"pydantic>=2.8.0,<2.9.0",
|
73
|
+
]
|
75
74
|
if sys.version_info.minor >= 12:
|
76
75
|
logger.debug(
|
77
76
|
"The MLflow integration on Python 3.12 and above is not yet "
|
zenml/zen_server/rbac/utils.py
CHANGED
@@ -494,8 +494,12 @@ def get_subresources_for_model(
|
|
494
494
|
# We previously used `dict(model)` here, but that lead to issues with
|
495
495
|
# models overwriting `__getattr__`, this `model.__iter__()` has the same
|
496
496
|
# results though.
|
497
|
-
|
498
|
-
|
497
|
+
if isinstance(model, Page):
|
498
|
+
for item in model:
|
499
|
+
resources.update(_get_subresources_for_value(item))
|
500
|
+
else:
|
501
|
+
for _, value in model.__iter__():
|
502
|
+
resources.update(_get_subresources_for_value(value))
|
499
503
|
|
500
504
|
return resources
|
501
505
|
|
{zenml_nightly-0.66.0.dev20240918.dist-info → zenml_nightly-0.66.0.dev20240923.dist-info}/RECORD
RENAMED
@@ -6,7 +6,7 @@ RELEASE_NOTES.md,sha256=GjuHlUd-5AcepXC8ETMkIRMxKVQtBekiuY_CW0oP4XQ,365106
|
|
6
6
|
ROADMAP.md,sha256=hiLSmr16BH8Dfx7SaQM4JcXCGCVl6mFZPFAwJeDTrJU,407
|
7
7
|
SECURITY.md,sha256=9DepA8y03yvCZLHEfcXLTDH4lUyKHquAdukBsccNN7c,682
|
8
8
|
zenml/README.md,sha256=827dekbOWAs1BpW7VF1a4d7EbwPbjwccX-2zdXBENZo,1777
|
9
|
-
zenml/VERSION,sha256=
|
9
|
+
zenml/VERSION,sha256=eLORn33pwo8VjcZcU3G8oJG29EmPsXwof5Md9VFj7Do,19
|
10
10
|
zenml/__init__.py,sha256=X_JnjAYTBG2ZYgcM2_FDPssygdj7z7VTAmU9HEi17p0,2306
|
11
11
|
zenml/actions/__init__.py,sha256=mrt6wPo73iKRxK754_NqsGyJ3buW7RnVeIGXr1xEw8Y,681
|
12
12
|
zenml/actions/base_action.py,sha256=UcaHev6BTuLDwuswnyaPjdA8AgUqB5xPZ-lRtuvf2FU,25553
|
@@ -378,7 +378,7 @@ zenml/integrations/llama_index/__init__.py,sha256=go2bEZ1dzjUtgFWb22op3MABRBLezy
|
|
378
378
|
zenml/integrations/llama_index/materializers/__init__.py,sha256=OEtWarp07nDpbSnV5Y9f8Gk1-Ufa7AINiz4e7H22rDQ,963
|
379
379
|
zenml/integrations/llama_index/materializers/document_materializer.py,sha256=XPSpv-D-PYuOppJ6z3gTxo2r4W2VI0flvq8bcY6rU2o,2465
|
380
380
|
zenml/integrations/llama_index/materializers/gpt_index_materializer.py,sha256=JFHbxK_ghgzo9eV7VMEfZuxLruh2HuXpgGBwBbxG8Qg,4925
|
381
|
-
zenml/integrations/mlflow/__init__.py,sha256=
|
381
|
+
zenml/integrations/mlflow/__init__.py,sha256=XvHDbTpknSnBXAhneuGEnK9hplZr7Uo2ggh6rqQe5vw,3864
|
382
382
|
zenml/integrations/mlflow/experiment_trackers/__init__.py,sha256=foDnjpi4vkH9adjaA01c-utb0mRYybQfdR75PDK9CAQ,775
|
383
383
|
zenml/integrations/mlflow/experiment_trackers/mlflow_experiment_tracker.py,sha256=KbQFJlAm6hG3SugOx89Pr9u23xVcvh8bpIMWKJZHfjI,14264
|
384
384
|
zenml/integrations/mlflow/flavors/__init__.py,sha256=hMKgndBdmMghG9d3o4sJNVXG4mrZiTcA6hBeL0BirOY,1305
|
@@ -1146,7 +1146,7 @@ zenml/zen_server/rbac/__init__.py,sha256=nACbn_G7nZt_AWM3zeFL0FCmELvQnvaOFMwvTG3
|
|
1146
1146
|
zenml/zen_server/rbac/endpoint_utils.py,sha256=F_l2LyucuOiN3OEOtw-Xs6bxJPrJNPlfZxZX9hAyqfU,6507
|
1147
1147
|
zenml/zen_server/rbac/models.py,sha256=U3I-nw6yWhbuqK0IHJkgct6G3B4XQJZSC96ghj1a27Y,2404
|
1148
1148
|
zenml/zen_server/rbac/rbac_interface.py,sha256=pNdfNtis5YhQgpWYkli7xNwfzNT_uXQlBaYKlSFi5HA,2881
|
1149
|
-
zenml/zen_server/rbac/utils.py,sha256=
|
1149
|
+
zenml/zen_server/rbac/utils.py,sha256=bgHBwIJ-fl1FL2hJBP8lBuA4Xb7keu30HyDIl0mh12M,19942
|
1150
1150
|
zenml/zen_server/rbac/zenml_cloud_rbac.py,sha256=mFWwskAEmeZyNCVF4aImEZpZNqm4SWALnSgbv7s0Zk4,6747
|
1151
1151
|
zenml/zen_server/routers/__init__.py,sha256=ViyAhWL-ogHxE9wBvB_iMcur5H1NRVrzXkpogVY7FBA,641
|
1152
1152
|
zenml/zen_server/routers/actions_endpoints.py,sha256=TgFFU9fMu43iqTu-ybnxJ5QokzV-eivRAd6pW2TrFe0,9549
|
@@ -1399,8 +1399,8 @@ zenml/zen_stores/secrets_stores/sql_secrets_store.py,sha256=Bq1djrUP9saoD7vECjS7
|
|
1399
1399
|
zenml/zen_stores/sql_zen_store.py,sha256=Sfw5nql38ZGfPbdIUNLMYsVrfMP1faRGMj0f1r1IYnk,392523
|
1400
1400
|
zenml/zen_stores/template_utils.py,sha256=UB_CBoMIfBequa8g3H7aTI6V_ke1SJr4IW1qwFCL1jc,8932
|
1401
1401
|
zenml/zen_stores/zen_store_interface.py,sha256=kzR_i8vHjULld3MquSaMorcab8lJk1e9RZquw1VXjHY,93510
|
1402
|
-
zenml_nightly-0.66.0.
|
1403
|
-
zenml_nightly-0.66.0.
|
1404
|
-
zenml_nightly-0.66.0.
|
1405
|
-
zenml_nightly-0.66.0.
|
1406
|
-
zenml_nightly-0.66.0.
|
1402
|
+
zenml_nightly-0.66.0.dev20240923.dist-info/LICENSE,sha256=wbnfEnXnafPbqwANHkV6LUsPKOtdpsd-SNw37rogLtc,11359
|
1403
|
+
zenml_nightly-0.66.0.dev20240923.dist-info/METADATA,sha256=F97iolf2Vs1CWtrCaJasSu9H9q53pwEVp_BTZxbQaWQ,20961
|
1404
|
+
zenml_nightly-0.66.0.dev20240923.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
1405
|
+
zenml_nightly-0.66.0.dev20240923.dist-info/entry_points.txt,sha256=QK3ETQE0YswAM2mWypNMOv8TLtr7EjnqAFq1br_jEFE,43
|
1406
|
+
zenml_nightly-0.66.0.dev20240923.dist-info/RECORD,,
|
{zenml_nightly-0.66.0.dev20240918.dist-info → zenml_nightly-0.66.0.dev20240923.dist-info}/LICENSE
RENAMED
File without changes
|
{zenml_nightly-0.66.0.dev20240918.dist-info → zenml_nightly-0.66.0.dev20240923.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|