1# .readthedocs.yml 2# Read the Docs configuration file 3# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details 4 5# Required 6version: 2 7 8build: 9 os: ubuntu-22.04 10 tools: 11 python: "3.10" 12 13# Build documentation in the docs/ directory with Sphinx 14sphinx: 15 configuration: Doc/source/conf.py 16 fail_on_warning: false 17 18# Optionally build your docs in additional formats such as PDF and ePub 19formats: 20 - htmlzip 21 - epub 22 23# Optionally set the version of Python and requirements required to build your docs 24python: 25 install: 26 - requirements: Doc/docs-requirements.txt 27 - method: pip 28 path: . 29 extra_requirements: 30 - all 31