From f141fedf109c17b66e34889addd66b0d705a5db9 Mon Sep 17 00:00:00 2001 From: Alex Strick van Linschoten Date: Tue, 6 Feb 2024 16:22:26 +0100 Subject: [PATCH 1/2] update TOC (#2406) --- docs/book/toc.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/book/toc.md b/docs/book/toc.md index 4d2df6de5b3..b560ade1efe 100644 --- a/docs/book/toc.md +++ b/docs/book/toc.md @@ -94,6 +94,7 @@ * [Tekton Orchestrator](stacks-and-components/component-guide/orchestrators/tekton.md) * [Airflow Orchestrator](stacks-and-components/component-guide/orchestrators/airflow.md) * [Skypilot VM Orchestrator](stacks-and-components/component-guide/orchestrators/skypilot-vm.md) + * [HyperAI Orchestrator](stacks-and-components/component-guide/orchestrators/hyperai.md) * [Develop a custom orchestrator](stacks-and-components/component-guide/orchestrators/custom.md) * [Artifact Stores](stacks-and-components/component-guide/artifact-stores/artifact-stores.md) * [Local Artifact Store](stacks-and-components/component-guide/artifact-stores/local.md) From c10158bfe734ee8de08cf8d380aa2795e08bbd2e Mon Sep 17 00:00:00 2001 From: Christian Versloot Date: Mon, 19 Feb 2024 09:45:51 +0100 Subject: [PATCH 2/2] Bump mlflow to 2.10.2 --- src/zenml/integrations/mlflow/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zenml/integrations/mlflow/__init__.py b/src/zenml/integrations/mlflow/__init__.py index b90922e6e49..68132c97c5e 100644 --- a/src/zenml/integrations/mlflow/__init__.py +++ b/src/zenml/integrations/mlflow/__init__.py @@ -35,7 +35,7 @@ class MlflowIntegration(Integration): # does not pin it. They fixed this in a later version, so we can probably # remove this once we update the mlflow version. REQUIREMENTS = [ - "mlflow>=2.1.1,<=2.10.0", + "mlflow>=2.1.1,<=2.10.2", "mlserver>=1.3.3", "mlserver-mlflow>=1.3.3", ]