summaryrefslogtreecommitdiff
path: root/.readthedocs.yml
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2020-02-06 16:31:20 +0000
committerPhilippe Mathieu-Daudé <philmd@redhat.com>2020-02-07 15:15:16 +0100
commit66e7dde18cc4085ca47124be4ca08fa8e6bcdd3a (patch)
tree5b52507d2e18a60b389c306b0fb83f5808437ac6 /.readthedocs.yml
parent423edd9a31b3c78007bb5d9c9a9b3c0c618a10a8 (diff)
downloadqemu-66e7dde18cc4085ca47124be4ca08fa8e6bcdd3a.zip
.readthedocs.yml: specify some minimum python requirements
QEMU is all about the Python 3 now so lets also hint that to ReadTheDocs in its config file. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-Id: <20200206163120.31899-1-alex.bennee@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to '.readthedocs.yml')
-rw-r--r--.readthedocs.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.readthedocs.yml b/.readthedocs.yml
new file mode 100644
index 0000000000..8355dbc634
--- /dev/null
+++ b/.readthedocs.yml
@@ -0,0 +1,20 @@
+# .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