From 9131f2ce67491da17df76d2f3ba5ae36b187e4ad Mon Sep 17 00:00:00 2001 From: Dasun Pubudumal Date: Thu, 22 Aug 2024 16:43:13 +0100 Subject: [PATCH] chore: Update generate_docs workflow to use Python 3.11 and Sphinx dependencies --- .github/workflows/generate_docs.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/generate_docs.yml b/.github/workflows/generate_docs.yml index 8045e71..573c452 100644 --- a/.github/workflows/generate_docs.yml +++ b/.github/workflows/generate_docs.yml @@ -16,14 +16,12 @@ jobs: uses: actions/setup-python@v1 with: python-version: 3.11 - - name: Install pipenv - run: pip install pipenv - - name: Run tests - run: | - pipenv install --dev - name: Create rst files for docs run: | + pip install sphinx + pip install sphinx-autodoc-typehints + pipo install sphinx-pdj-theme mkdir doc sphinx-apidoc -o docs/source/ tol_lab_share tol_lab_share/config tol_lab_share/constants setup_dev_rabbit.py make html -C docs