From 5954618e9d1cbea29ee883f02d2155bf09f786c9 Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Wed, 1 Mar 2023 14:08:46 -0500 Subject: [PATCH] docs: remove duplicate spark backend in install docs --- docs/install.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/install.md b/docs/install.md index 5439a8e39756..d7187e1ef8f8 100644 --- a/docs/install.md +++ b/docs/install.md @@ -29,12 +29,14 @@ hide: ## Install backend dependencies {% for backend in sorted(ibis.backends.base._get_backend_names()) %} +{% if backend != "spark" %} === "{{ backend }}" ```sh pip install 'ibis-framework[{{ backend }}]' ``` +{% endif %} {% endfor %} ---