summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2023-05-03 07:08:57 +0200
committerGitHub <noreply@github.com>2023-05-03 07:08:57 +0200
commitc9912fd5614b259a6ebfb08e5a611e6f11061e00 (patch)
treee3250944f5c805a6ce85c1571f943bfa2e4cc2d4
parent74ff4c59eb58453cb4e276610f63baa70ee402e1 (diff)
downloadpylint-git-c9912fd5614b259a6ebfb08e5a611e6f11061e00.tar.gz
Upgrade 'tox - docs' to match readthedoc online and for performance (#8653)
-rw-r--r--doc/whatsnew/3/3.0/index.rst7
-rw-r--r--doc/whatsnew/3/index.rst2
-rw-r--r--tox.ini7
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 =