Skip to content

Commit bf29a55

Browse files
Bump pylint to 2.14.4, update changelog
1 parent 15470d1 commit bf29a55

File tree

8 files changed

+18
-7
lines changed

8 files changed

+18
-7
lines changed

CONTRIBUTORS.txt

+2
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,7 @@ contributors:
401401
- Matthijs Blom <[email protected]>
402402
- Matej Marušák <[email protected]>
403403
- Markus Siebenhaar <[email protected]>
404+
- Marco Pernigotti <[email protected]>
404405
- Marco Edward Gorelli <[email protected]>: Documented Jupyter integration
405406
- Marcin Kurczewski <[email protected]> (rr-)
406407
- Maik Röder <[email protected]>
@@ -489,6 +490,7 @@ contributors:
489490
- Caio Carrara <[email protected]>
490491
- C.A.M. Gerlach <[email protected]>
491492
- Bruno P. Kinoshita <[email protected]>
493+
- Bruce Dawson <[email protected]>
492494
- Brian C. Lane <[email protected]>
493495
- Brandon W Maister <[email protected]>
494496
- BioGeek <[email protected]>

doc/user_guide/checkers/features.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ General options
4141
specified are enabled, while categories only check already-enabled messages.
4242
:jobs:
4343
Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
44-
number of processors available to use.
44+
number of processors available to use, and will cap the count on Windows to
45+
avoid hangs.
4546

4647
Default: ``1``
4748
:unsafe-load-any-extension:

doc/user_guide/configuration/all-options.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ Default:
165165
""""""
166166

167167
Description:
168-
*Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the number of processors available to use.*
168+
*Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the number of processors available to use, and will cap the count on Windows to avoid hangs.*
169169

170170
Default:
171171
``1``

doc/whatsnew/2/2.14/full.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
Full changelog
22
==============
33

4-
What's New in Pylint 2.14.4?
4+
What's New in Pylint 2.14.5?
55
----------------------------
66
Release date: TBA
77

8+
9+
10+
What's New in Pylint 2.14.4?
11+
----------------------------
12+
Release date: 2022-06-29
13+
814
* The ``differing-param-doc`` check was triggered by positional only arguments.
915

1016
Closes #6950

examples/pylintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ ignored-modules=
6464
#init-hook=
6565

6666
# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
67-
# number of processors available to use.
67+
# number of processors available to use, and will cap the count on Windows to
68+
# avoid hangs.
6869
jobs=1
6970

7071
# Control the amount of potential inferred values when inferring a single

examples/pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ ignore-patterns = ["^\\.#"]
5353
# init-hook =
5454

5555
# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
56-
# number of processors available to use.
56+
# number of processors available to use, and will cap the count on Windows to
57+
# avoid hangs.
5758
jobs = 1
5859

5960
# Control the amount of potential inferred values when inferring a single object.

pylint/__pkginfo__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from __future__ import annotations
1111

12-
__version__ = "2.14.3"
12+
__version__ = "2.14.4"
1313

1414

1515
def get_numversion_from_version(v: str) -> tuple[int, int, int]:

tbump.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github_url = "https://github.com/PyCQA/pylint"
22

33
[version]
4-
current = "2.14.3"
4+
current = "2.14.4"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

0 commit comments

Comments
 (0)