File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1212Summary -- 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
Original file line number Diff line number Diff line change 113.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
Original file line number Diff line number Diff line change @@ -56,7 +56,12 @@ changedir = doc/
5656deps =
5757 -r {toxinidir}/doc/requirements.txt
5858commands =
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]
6267deps =
You can’t perform that action at this time.
0 commit comments