1# .readthedocs.yml 2# Read the Docs configuration file 3# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details 4 5# Required 6version: 2 7 8sphinx: 9 configuration: python/docs/conf.py 10 fail_on_warning: false 11 12# Setup build requirements for docs. 13# Use conda so that we can install the latest libprotobuf package without 14# having to build from scratch just for docs builds. 15conda: 16 environment: python/docs/environment.yml 17 18python: 19 version: 3.7 20 install: 21 - method: setuptools 22 path: python 23