From fc9e39c7b20e058db9a89cf2cae9c141f5a3064a Mon Sep 17 00:00:00 2001 From: rorywhite200 <125914446+rorywhite200@users.noreply.github.com> Date: Fri, 26 Jan 2024 18:00:54 -0800 Subject: [PATCH] updated yaml --- .readthedocs.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 99af8f3..ae72745 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -10,14 +10,18 @@ build: os: ubuntu-22.04 tools: python: "3.9" - + jobs: + post_create_environment: + # Install poetry + # https://python-poetry.org/docs/#installing-manually + - pip install poetry + # Tell poetry to not use a virtual environment + - poetry config virtualenvs.create false + post_install: + # Install dependencies with 'docs' dependency group + # https://python-poetry.org/docs/managing-dependencies/#dependency-groups + - poetry install + # Build documentation in the "docs/" directory with Sphinx sphinx: configuration: docs/conf.py - -# Optional but recommended, declare the Python requirements required -# to build your documentation -# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html -python: - install: - - requirements: docs/requirements.txt