From 665613ed51aa8badbbd16d50e594fb78fdec7c27 Mon Sep 17 00:00:00 2001 From: Ben Chambers <35960+bjchambers@users.noreply.github.com> Date: Tue, 22 Aug 2023 11:22:47 -0700 Subject: [PATCH] ci: re-install Kaskada when building docs Poetry install attempts to manage the virtualenv, so it uninstalls things it doesn't think are necessary, including `plotly`. --- .github/workflows/ci_python.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci_python.yml b/.github/workflows/ci_python.yml index 3c27e0615..080ccc726 100644 --- a/.github/workflows/ci_python.yml +++ b/.github/workflows/ci_python.yml @@ -131,6 +131,7 @@ jobs: poetry env use 3.11 source $(poetry env info --path)/bin/activate poetry install --with=docs + pip install 'kaskada[plot]>=0.6.0-a.0' --find-links dist --force-reinstall ls docs/source/_static sphinx-build docs/source docs/_build -j auto -W deactivate