From c86baade9f3d38e9664bb617b9ea80ca01ac895e Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Mon, 8 Apr 2019 10:06:19 +0800 Subject: [PATCH] Update Sphinx to version ~1.8 Sphinx 1.8 introduces a `--keep-going` parameter which will be handy for our docs project so that it prints out all docs failures before failing the build. This allows CI resources to not be wasted by only printing one failure at a time. Change-Id: I62c77a94f735fddcb8939aa5dbeb84566ae75d86 Signed-off-by: Thanh Ha --- releasenotes/notes/sphinx-update-6b451b2462799591.yaml | 6 ++++++ requirements.txt | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/sphinx-update-6b451b2462799591.yaml diff --git a/releasenotes/notes/sphinx-update-6b451b2462799591.yaml b/releasenotes/notes/sphinx-update-6b451b2462799591.yaml new file mode 100644 index 0000000..d61f850 --- /dev/null +++ b/releasenotes/notes/sphinx-update-6b451b2462799591.yaml @@ -0,0 +1,6 @@ +--- +upgrade: + - | + Sphinx version is updated from ~1.7.9 to ~1.8.5 which may or may not affect + project docs build. Refer to upstream release note as necessary. + https://www.sphinx-doc.org/en/master/changes.html diff --git a/requirements.txt b/requirements.txt index 90a5ff5..772b9a4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ pytest pyyaml -Sphinx~=1.7.9 +Sphinx~=1.8.5 sphinx_bootstrap_theme>=0.6.2 # Indirect Dependencies -- 2.16.6