36d9c2883e
The readthedocs build is failing because we do not support Python 3.5 anymore.
Bump the Python version in the configuration.
Fixes: 1b11f28d05
("configure: Bump the minimum required Python version to 3.6", 2020-10-02)
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-id: 20201005150122.446472-1-pbonzini@redhat.com
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
21 lines
543 B
YAML
21 lines
543 B
YAML
# .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.6
|