.readthedocs.yml 908 B

123456789101112131415161718192021222324252627282930
  1. # .readthedocs.yml
  2. # Read the Docs configuration file
  3. # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
  4. version: 2
  5. build:
  6. os: ubuntu-22.04
  7. tools:
  8. python: "3.11"
  9. sphinx:
  10. configuration: conf.py
  11. # Possible options: htmlzip, pdf, epub
  12. # All disabled for now:
  13. # - single-page htmlzip is too big to be usable, and requires too much memory.
  14. # - pdf generates too many latex warnings and the build is killed once logs
  15. # reach 4 MB. Could likely be improved if someone is motivated.
  16. # - epub is too big, and has tons of validation errors which make most readers
  17. # treat it as invalid (GH-3862). Also, it's ugly.
  18. # Hopefully one day we'll have a multi-page HTML zip option, but until
  19. # then, all offline download options are worthless.
  20. # (Track https://github.com/readthedocs/readthedocs.org/issues/3242)
  21. formats: []
  22. python:
  23. install:
  24. - requirements: requirements.txt