Fix ReadTheDocs config for Poetry (#1663)

This commit is contained in:
Robbe Sneyders
2023-03-03 09:21:54 +01:00
committed by GitHub
parent 6d8c297efc
commit c257f04806
2 changed files with 17 additions and 11 deletions

View File

@@ -3,10 +3,16 @@ version: 2
sphinx:
configuration: docs/conf.py
python:
version: 3.7
install:
- method: pip
path: .
extra_requirements:
- docs
build:
os: "ubuntu-22.04"
tools:
python: "3.8"
jobs:
post_create_environment:
# Install poetry
- pip install poetry
# Tell poetry to not use a virtual environment
- poetry config virtualenvs.create false
post_install:
# Install dependencies with 'docs' dependency group
- poetry install --with docs