jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/460198 )
Change subject: docs/requirements-py3.txt: Do not install sphinx 1.8.0 ......................................................................
docs/requirements-py3.txt: Do not install sphinx 1.8.0
docs/requirements-py3.txt: rstcheck is not compatible with sphinx 1.8.0. (T204189) tox.ini: Remove findx as a dependency, use the --recursive option of rstcheck instead.
Bug: T204189 Change-Id: I4cc384d070b59604089554e8747a3022d13fa934 --- M docs/requirements-py3.txt M tox.ini 2 files changed, 2 insertions(+), 3 deletions(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/docs/requirements-py3.txt b/docs/requirements-py3.txt index f1ccf45..55c181b 100644 --- a/docs/requirements-py3.txt +++ b/docs/requirements-py3.txt @@ -2,6 +2,6 @@ # using sphinx on python3.4. # requirements.txt and pywikibot[security] are also needed
-sphinx +sphinx!=1.8.0 sphinx-epytext>=0.0.4 unidiff diff --git a/tox.ini b/tox.ini index 7847107..599af03 100644 --- a/tox.ini +++ b/tox.ini @@ -113,12 +113,11 @@ commands = pip install -e .[security] make html -C ./docs - findx -type f -name '*.rst' -not -path './.tox/*' : rstcheck --report warning --ignore-directives automodule,autoclass,autofunction + rstcheck --recursive --report warning --ignore-directives automodule,autoclass,autofunction . basepython = python3.4 deps = -rrequirements.txt -rdocs/requirements-py3.txt - findx >= 0.9.9 rstcheck
[flake8]
pywikibot-commits@lists.wikimedia.org