From 274a6d6579f71f43435ff25282306c950a7f4623 Mon Sep 17 00:00:00 2001 From: Kirk Byers Date: Fri, 28 Jun 2024 10:39:59 -0600 Subject: [PATCH] Revert "Update .readthedocs.yml (testing to see if it fixes RTD build issues)" (#941) This reverts commit 39d07eeb686856b5a1beb8323342e148555dbbca. --- .readthedocs.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 57501b92..c028a638 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -2,15 +2,17 @@ version: 2 formats: [] build: - os: ubuntu-22.04 + os: "ubuntu-22.04" tools: python: "3.11" - -python: - install: - - method: poetry - path: . - command: "poetry install --with docs" + jobs: + post_create_environment: + - pip install poetry + - poetry config virtualenvs.create false + post_install: + # Install dependencies with 'docs' dependency group + # https://python-poetry.org/docs/managing-dependencies/#dependency-groups + - poetry install --with docs sphinx: configuration: docs/conf.py