QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
543 B
21 lines
543 B
|
7 years ago
|
# .readthedocs.yml
|
||
|
|
# Read the Docs configuration file
|
||
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
||
|
|
|
||
|
|
# Required
|
||
|
|
version: 2
|
||
|
|
|
||
|
|
# Build documentation in the docs/ directory with Sphinx
|
||
|
|
sphinx:
|
||
|
|
configuration: docs/conf.py
|
||
|
|
|
||
|
|
# We want all the document formats
|
||
|
|
formats: all
|
||
|
|
|
||
|
|
# For consistency, we require that QEMU's Sphinx extensions
|
||
|
|
# run with at least the same minimum version of Python that
|
||
|
|
# we require for other Python in our codebase (our conf.py
|
||
|
|
# enforces this, and some code needs it.)
|
||
|
|
python:
|
||
|
|
version: 3.5
|