From 274e13f734a9af4730d60daa61e6482acf16057f Mon Sep 17 00:00:00 2001 From: supplyandcommand <42962106+supplyandcommand@users.noreply.github.com> Date: Mon, 25 Mar 2024 10:32:49 +0100 Subject: [PATCH] fix: install extras properly when building docs --- .github/workflows/documentation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 1d7241b..7381aec 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -15,7 +15,7 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: python-version: '3.10' @@ -23,7 +23,7 @@ jobs: - name: Dependencies run: | python -m pip install --upgrade pip - pip install turftopic[pyro-ppl,docs] + pip install "turftopic[pyro-ppl,docs]" - name: Build and Deploy if: github.event_name == 'push'