• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision66e7dde18cc4085ca47124be4ca08fa8e6bcdd3a (tree)
Time2020-02-07 23:15:16
AuthorAlex Bennée <alex.bennee@lina...>
CommiterPhilippe Mathieu-Daudé

Log Message

.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>

Change Summary

Incremental Difference

--- /dev/null
+++ b/.readthedocs.yml
@@ -0,0 +1,20 @@
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:
20+ version: 3.5