From fd56d6fb2b8aa56bf44aeae2899b0befb6a5f40a Mon Sep 17 00:00:00 2001 From: Ben Chambers <35960+bjchambers@users.noreply.github.com> Date: Tue, 22 Aug 2023 12:27:18 -0700 Subject: [PATCH] ci: re-install Kaskada when building docs (#700) 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