Skip to content

Commit c9912fd

Browse files
Upgrade 'tox - docs' to match readthedoc online and for performance (#8653)
1 parent 74ff4c5 commit c9912fd

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

doc/whatsnew/3/3.0/index.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@
1212
Summary -- Release highlights
1313
=============================
1414

15-
In 3.0.0...
15+
In ``3.0.0``, we're enacting necessary breaking changes and long
16+
announced deprecations.
17+
18+
There's going to be frequent beta releases,
19+
before the official releases, everyone is welcome to try the betas
20+
so we find problems before the actual release.
1621

1722

1823
.. towncrier release notes start

doc/whatsnew/3/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
3.x
22
===
33

4+
This is the full list of change in pylint 3.x minors, by categories.
5+
46
.. toctree::
57
:maxdepth: 2
68

tox.ini

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,12 @@ changedir = doc/
5656
deps =
5757
-r {toxinidir}/doc/requirements.txt
5858
commands =
59-
sphinx-build -W -b html -d _build/doctrees . _build/html
59+
# Readthedoc launch a slightly different command see '.readthedocs.yaml'
60+
# sphinx-build -T -W -E --keep-going -b html -d _build/doctrees -D language=en . _build/html
61+
# Changes were made for performance reasons, add or remove only if you can't reproduce.
62+
sphinx-build -T -W -j auto --keep-going -b html -d _build/doctrees -D language=en . _build/html
63+
# -E: don't use a saved environment, always read all files
64+
# -j auto: build in parallel with N processes where possible (special value "auto" will set N to cpu-count)
6065

6166
[testenv:test_doc]
6267
deps =

0 commit comments

Comments
 (0)