.readthedocs.yml 462 B

1234567891011121314151617181920
  1. # Required
  2. version: 2
  3. build:
  4. os: "ubuntu-22.04"
  5. tools:
  6. python: "3.8"
  7. # Build documentation in the docs/ directory with Sphinx
  8. sphinx:
  9. configuration: docs/code-docs/source/conf.py
  10. fail_on_warning: false
  11. # Optionally build your docs in additional formats such as PDF
  12. formats:
  13. - pdf
  14. # Optionally set the version of Python and requirements required to build your docs
  15. python:
  16. install:
  17. - requirements: requirements/requirements-readthedocs.txt