Skip to content

Commit 8e7b809

Browse files
authored
Bump pylint to 2.16.4, update changelog (#8389)
1 parent fb4512c commit 8e7b809

File tree

5 files changed

+17
-6
lines changed

5 files changed

+17
-6
lines changed

doc/whatsnew/2/2.16/index.rst

+14
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,20 @@ Last but not least @clavedeluna and @nickdrozd became triagers, welcome to the t
3232

3333
.. towncrier release notes start
3434
35+
What's new in Pylint 2.16.4?
36+
----------------------------
37+
Release date: 2023-03-06
38+
39+
40+
False Positives Fixed
41+
---------------------
42+
43+
- Fix false positive for isinstance-second-argument-not-valid-type with union
44+
types.
45+
46+
Closes #8205 (`#8205 <https://github.com/PyCQA/pylint/issues/8205>`_)
47+
48+
3549
What's new in Pylint 2.16.3?
3650
----------------------------
3751
Release date: 2023-03-03

doc/whatsnew/fragments/8205.false_positive

-3
This file was deleted.

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.16.3"
12+
__version__ = "2.16.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.16.3"
4+
current = "2.16.4"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

towncrier.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.towncrier]
2-
version = "2.16.3"
2+
version = "2.16.4"
33
directory = "doc/whatsnew/fragments"
44
filename = "doc/whatsnew/2/2.16/index.rst"
55
template = "doc/whatsnew/fragments/_template.rst"

0 commit comments

Comments
 (0)