diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2020-03-30 14:37:20 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2020-03-30 14:37:20 +0100 |
commit | 83019e81d1002650947c3e992508cdab7b89e3f5 (patch) | |
tree | 1cc829aeb1cf7b6170aba2d281edba81bef89166 /docs | |
parent | f9fe8450fa7cdc6268e05c93fa258f583f4514b7 (diff) | |
parent | 88828bf133b64b7a860c166af3423ef1a47c5d3b (diff) |
Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20200330' into staging
target-arm queue:
* hw/arm/orangepi: check for potential NULL pointer when calling blk_is_available
* hw/misc/allwinner-h3-dramc: enforce 64-bit multiply when calculating row mirror address
* docs/conf.py: Raise ConfigError for bad Sphinx Python version
* hw/arm/xlnx-zynqmp.c: Avoid memory leak in error-return path
* hw/arm/xlnx-zynqmp.c: Add missing error-propagation code
* target/arm: fix incorrect current EL bug in aarch32 exception emulation
# gpg: Signature made Mon 30 Mar 2020 14:36:02 BST
# gpg: using RSA key E1A5C593CD419DE28E8315CF3C2525ED14360CDE
# gpg: issuer "peter.maydell@linaro.org"
# gpg: Good signature from "Peter Maydell <peter.maydell@linaro.org>" [ultimate]
# gpg: aka "Peter Maydell <pmaydell@gmail.com>" [ultimate]
# gpg: aka "Peter Maydell <pmaydell@chiark.greenend.org.uk>" [ultimate]
# Primary key fingerprint: E1A5 C593 CD41 9DE2 8E83 15CF 3C25 25ED 1436 0CDE
* remotes/pmaydell/tags/pull-target-arm-20200330:
target/arm: fix incorrect current EL bug in aarch32 exception emulation
hw/arm/xlnx-zynqmp.c: Add missing error-propagation code
hw/arm/xlnx-zynqmp.c: Avoid memory leak in error-return path
docs/conf.py: Raise ConfigError for bad Sphinx Python version
hw/misc/allwinner-h3-dramc: enforce 64-bit multiply when calculating row mirror address
hw/arm/orangepi: check for potential NULL pointer when calling blk_is_available
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/conf.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/conf.py b/docs/conf.py index af55f506d5..7768611e89 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,14 +29,15 @@ import os import sys import sphinx -from sphinx.errors import VersionRequirementError +from sphinx.errors import ConfigError # Make Sphinx fail cleanly if using an old Python, rather than obscurely # failing because some code in one of our extensions doesn't work there. -# Unfortunately this doesn't display very neatly (there's an unavoidable -# Python backtrace) but at least the information gets printed... +# In newer versions of Sphinx this will display nicely; in older versions +# Sphinx will also produce a Python backtrace but at least the information +# gets printed... if sys.version_info < (3,5): - raise VersionRequirementError( + raise ConfigError( "QEMU requires a Sphinx that uses Python 3.5 or better\n") # The per-manual conf.py will set qemu_docdir for a single-manual build; |