Tim Swast | 35a2bf9 | 2019-08-15 16:22:02 -0700 | [diff] [blame] | 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 |
| 6 | version: 2 |
| 7 | |
| 8 | sphinx: |
| 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. |
| 15 | conda: |
| 16 | environment: python/docs/environment.yml |
| 17 | |
| 18 | python: |
| 19 | version: 3.7 |
| 20 | install: |
| 21 | - method: setuptools |
| 22 | path: python |