.readthedocs.yml 877 B

12345678910111213141516171819202122232425262728
  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. image: latest
  7. sphinx:
  8. configuration: conf.py
  9. # Possible options: htmlzip, pdf, epub
  10. # All disabled for now:
  11. # - single-page htmlzip is too big to be usable, and requires too much memory.
  12. # - pdf generates too many latex warnings and the build is killed once logs
  13. # reach 4 MB. Could likely be improved if someone is motivated.
  14. # - epub is too big, and has tons of validation errors which make most readers
  15. # treat it as invalid (GH-3862). Also, it's ugly.
  16. # Hopefully one day we'll have a multi-page HTML zip option, but until
  17. # then, all offline download options are worthless.
  18. # (Track https://github.com/readthedocs/readthedocs.org/issues/3242)
  19. formats: []
  20. python:
  21. install:
  22. - requirements: requirements.txt