From ea050fdede0a2e318981b0d354c6d0bfbc9ecf21 Mon Sep 17 00:00:00 2001 From: Fabian Gebhart <16943048+fgebhart@users.noreply.github.com> Date: Thu, 31 Oct 2024 15:04:14 +0100 Subject: [PATCH] fix read-the-docs build pipeline (#192) --- .readthedocs.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 4049ff2..3fe764c 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -9,13 +9,13 @@ build: os: ubuntu-22.04 tools: python: "3.11" - # see https://browniebroke.com/blog/specify-docs-dependency-groups-with-poetry-and-read-the-docs/ jobs: post_create_environment: - pip install poetry - - poetry config virtualenvs.create false + - poetry export --extras docs --without-hashes > doc-requirements.txt post_install: - - poetry install --extras docs + - pip install -r doc-requirements.txt + - pip list python: install: