From ce367d559d2a1d652600c8fda4a75397e84c05d7 Mon Sep 17 00:00:00 2001 From: Steven Christe Date: Thu, 14 Mar 2024 13:05:01 -0400 Subject: [PATCH] fixed rtd build --- .readthedocs.yml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 41981ac..df62f41 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -3,17 +3,16 @@ version: 2 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 - # Install dependencies with 'docs' dependency group - # https://python-poetry.org/docs/managing-dependencies/#dependency-groups - - poetry install --with docs + python: "3.10" + +python: + install: + - method: pip + extra_requirements: + - docs + path: . sphinx: + builder: html configuration: docs/conf.py + fail_on_warning: false