From b6929550ca4a5b6269b4451ec2250053728b7fa2 Mon Sep 17 00:00:00 2001 From: gujin Date: Sun, 3 Nov 2019 02:37:53 +0800 Subject: [PATCH] tox: Keeping going with docs Change-Id: I30fa4e2308d83f4e6afd9efadf72b0096ad5fb83 --- test-requirements.txt | 4 ++-- tox.ini | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test-requirements.txt b/test-requirements.txt index c28ffed..8ab9bb0 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -11,8 +11,8 @@ testrepository>=0.0.18 # Apache-2.0/BSD testtools>=2.2.0 # MIT # Documentation -sphinx!=1.6.6,!=1.6.7,>=1.6.2,<2.0.0;python_version=='2.7' # BSD -sphinx!=1.6.6,!=1.6.7,>=1.6.2;python_version>='3.4' # BSD +sphinx>=1.8.0,<2.0.0;python_version=='2.7' # BSD +sphinx>=1.8.0,!=2.1.0;python_version>='3.4' # BSD reno>=2.5.0 # Apache-2.0 # Bandit build requirements diff --git a/tox.ini b/tox.ini index e4c929f..3d8887e 100644 --- a/tox.ini +++ b/tox.ini @@ -31,7 +31,7 @@ commands = {posargs} [testenv:releasenotes] basepython = python3 -commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html +commands = sphinx-build -a -E -W -d releasenotes/build/doctrees --keep-going -b html releasenotes/source releasenotes/build/html [flake8] enable-extensions=H106,H203