.readthedocs.yml 626 B

123456789101112131415161718192021222324
  1. # Read the Docs configuration file for Sphinx projects
  2. # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
  3. # Required
  4. version: 2
  5. # Set the OS, Python version and other tools we might need
  6. build:
  7. os: ubuntu-22.04
  8. tools:
  9. python: "3.12"
  10. # Build documentation in the "docs/" directory with Sphinx
  11. sphinx:
  12. configuration: docs/conf.py
  13. # Build documentation in additional formats such as PDF and ePub
  14. formats: all
  15. # Build requirements for our documentation
  16. # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
  17. python:
  18. install:
  19. - requirements: docs/requirements.txt