.readthedocs.yml 518 B

12345678910111213141516171819202122
  1. # .readthedocs.yml
  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. sphinx:
  7. configuration: python/docs/conf.py
  8. fail_on_warning: false
  9. # Setup build requirements for docs.
  10. # Use conda so that we can install the latest libprotobuf package without
  11. # having to build from scratch just for docs builds.
  12. conda:
  13. environment: python/docs/environment.yml
  14. python:
  15. version: 3.7
  16. install:
  17. - method: setuptools
  18. path: python