.readthedocs.yaml 606 B

1234567891011121314151617181920212223
  1. # .readthedocs.yaml
  2. # Read the Docs configuration file
  3. # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
  4. # Required
  5. version: 2
  6. # Set the version of Python and other tools you might need
  7. build:
  8. os: ubuntu-22.04
  9. tools:
  10. python: "3.11"
  11. # Build documentation in the docs/ directory with Sphinx
  12. sphinx:
  13. configuration: doc/source/conf.py
  14. fail_on_warning: true
  15. # We recommend specifying your dependencies to enable reproducible builds:
  16. # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
  17. python:
  18. install:
  19. - requirements: doc/requirements-doc.txt