Skip to content

Commit 6447553

Browse files
Bump pylint to 2.14.1, update changelog
1 parent 7e44744 commit 6447553

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

.github/workflows/primer_run_pr.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ on:
1616
- "!.github/workflows/primer_run_main.yaml"
1717
- "!.github/workflows/primer_comment.yaml"
1818
- "!tests/primer/packages_to_prime.json"
19+
branches-ignore:
20+
- "maintenance/**"
1921

2022
concurrency:
2123
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

CONTRIBUTORS.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ contributors:
9595
- Derek Gustafson <[email protected]>
9696
- Cezar Elnazli <[email protected]>: deprecated-method
9797
- Joseph Young <[email protected]> (jpy-git)
98-
- Nicolas Chauvat <[email protected]>
9998
- Tim Martin <[email protected]>
99+
- Nicolas Chauvat <[email protected]>
100100
- Radu Ciorba <[email protected]>: not-context-manager and confusing-with-statement warnings.
101101
- Holger Peters <[email protected]>
102102
- Cosmin Poieană <[email protected]>: unichr-builtin and improvements to bad-open-mode.

doc/whatsnew/2/2.14/full.rst

+7-6
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.1?
4+
What's New in Pylint 2.14.2?
55
----------------------------
66
Release date: TBA
77

8+
9+
10+
What's New in Pylint 2.14.1?
11+
----------------------------
12+
Release date: 2022-06-06
13+
814
* Avoid reporting ``unnecessary-dict-index-lookup`` or ``unnecessary-list-index-lookup``
915
when the index lookup is part of a destructuring assignment.
1016

@@ -131,11 +137,6 @@ Release date: 2022-06-01
131137

132138
Refs #6462
133139

134-
* Fixed a false positive regression in 2.13 for ``used-before-assignment`` where it is safe to rely
135-
on a name defined only in an ``except`` block because the ``else`` block returned.
136-
137-
Closes #6790
138-
139140
* Removed the ``assign-to-new-keyword`` message as there are no new keywords in the supported Python
140141
versions any longer.
141142

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.0"
12+
__version__ = "2.14.1"
1313

1414

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

pylintrc

+1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ disable=
104104
format,
105105
# We anticipate #3512 where it will become optional
106106
fixme,
107+
cyclic-import,
107108

108109

109110
[REPORTS]

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

0 commit comments

Comments
 (0)