123456789101112131415161718192021222324252627 |
- # Read the Docs configuration file
- # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
- # Required
- version: 2
- sphinx:
- configuration: documentation/conf.py
- fail_on_warning: true
- # Optionally build your docs in additional formats such as PDF
- #formats:
- # - pdf # stopped working (e.g. https://readthedocs.org/projects/flexmeasures/builds/26604114/, also not required)
- build:
- os: ubuntu-20.04
- tools:
- python: "3.9"
- jobs:
- post_create_environment:
- - pip install . --no-deps # as python install step, RTD installs deps eagerly
- python:
- install:
- - requirements: requirements/3.9/app.txt
- - requirements: requirements/3.9/docs.txt
|