Alex Bennée | 66e7dde | 2020-02-06 16:31:20 +0000 | [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 | # Build documentation in the docs/ directory with Sphinx |
| 9 | sphinx: |
| 10 | configuration: docs/conf.py |
| 11 | |
| 12 | # We want all the document formats |
| 13 | formats: all |
| 14 | |
| 15 | # For consistency, we require that QEMU's Sphinx extensions |
| 16 | # run with at least the same minimum version of Python that |
| 17 | # we require for other Python in our codebase (our conf.py |
| 18 | # enforces this, and some code needs it.) |
| 19 | python: |
Paolo Bonzini | 36d9c28 | 2020-10-05 17:01:22 +0200 | [diff] [blame] | 20 | version: 3.6 |