From c9912fd5614b259a6ebfb08e5a611e6f11061e00 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Wed, 3 May 2023 07:08:57 +0200 Subject: Upgrade 'tox - docs' to match readthedoc online and for performance (#8653) --- doc/whatsnew/3/3.0/index.rst | 7 ++++++- doc/whatsnew/3/index.rst | 2 ++ tox.ini | 7 ++++++- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/doc/whatsnew/3/3.0/index.rst b/doc/whatsnew/3/3.0/index.rst index 8e0f6f7cc..d58fa3f1a 100644 --- a/doc/whatsnew/3/3.0/index.rst +++ b/doc/whatsnew/3/3.0/index.rst @@ -12,7 +12,12 @@ Summary -- Release highlights ============================= -In 3.0.0... +In ``3.0.0``, we're enacting necessary breaking changes and long +announced deprecations. + +There's going to be frequent beta releases, +before the official releases, everyone is welcome to try the betas +so we find problems before the actual release. .. towncrier release notes start diff --git a/doc/whatsnew/3/index.rst b/doc/whatsnew/3/index.rst index ff4aaf3dc..67e4fd06a 100644 --- a/doc/whatsnew/3/index.rst +++ b/doc/whatsnew/3/index.rst @@ -1,6 +1,8 @@ 3.x === +This is the full list of change in pylint 3.x minors, by categories. + .. toctree:: :maxdepth: 2 diff --git a/tox.ini b/tox.ini index 924a72f0e..5f512d221 100644 --- a/tox.ini +++ b/tox.ini @@ -56,7 +56,12 @@ changedir = doc/ deps = -r {toxinidir}/doc/requirements.txt commands = - sphinx-build -W -b html -d _build/doctrees . _build/html + # Readthedoc launch a slightly different command see '.readthedocs.yaml' + # sphinx-build -T -W -E --keep-going -b html -d _build/doctrees -D language=en . _build/html + # Changes were made for performance reasons, add or remove only if you can't reproduce. + sphinx-build -T -W -j auto --keep-going -b html -d _build/doctrees -D language=en . _build/html + # -E: don't use a saved environment, always read all files + # -j auto: build in parallel with N processes where possible (special value "auto" will set N to cpu-count) [testenv:test_doc] deps = -- cgit v1.2.1