TTS/.readthedocs.yml

24 lines
569 B
YAML
Raw Normal View History

2021-06-27 18:55:20 +00:00
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
2023-06-30 12:40:54 +00:00
# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.11"
2021-06-27 18:55:20 +00:00
# Optionally set the version of Python and requirements required to build your docs
python:
install:
2021-06-30 13:00:14 +00:00
- requirements: docs/requirements.txt
2023-06-30 12:40:54 +00:00
- requirements: requirements.txt
# Build documentation in the docs/ directory with Sphinx
sphinx:
builder: html
configuration: docs/source/conf.py