Skip to content

Commit 13dae7c

Browse files
Prepare 2.7.3 release (#4261)
1 parent a37c643 commit 13dae7c

21 files changed

+29
-16
lines changed

ChangeLog

+2-13
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,9 @@
22
Pylint's ChangeLog
33
------------------
44

5-
What's New in Pylint 2.8.0?
5+
What's New in Pylint 2.7.3?
66
===========================
7-
Release date: TBA
8-
9-
..
10-
Put new features here
7+
Release date: 2021-03-29
118

129
* Introduce logic for checking deprecated attributes in DeprecationMixin.
1310

@@ -19,14 +16,6 @@ Release date: TBA
1916

2017
Closes #4086
2118

22-
23-
What's New in Pylint 2.7.3?
24-
===========================
25-
Release date: TBA
26-
27-
..
28-
Put bug fixes that will be cherry-picked to latest major version here
29-
3019
* Bump ``astroid`` version to ``2.5.2``
3120

3221
* Fix false positive for ``method-hidden`` when using private attribute and method

pylint/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# Copyright (c) 2015 Ionel Cristian Maries <[email protected]>
55
# Copyright (c) 2018 Nick Drozd <[email protected]>
66
# Copyright (c) 2020 Pierre Sassoulas <[email protected]>
7+
# Copyright (c) 2021 Marc Mueller <[email protected]>
78

89
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
910
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING

pylint/__pkginfo__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
from os.path import join
3232

3333
# For an official release, use dev_version = None
34-
numversion = (2, 8, 0)
35-
dev_version = 1
34+
numversion = (2, 7, 3)
35+
dev_version = None
3636

3737
version = ".".join(str(num) for num in numversion)
3838
if dev_version is not None:

pylint/checkers/base.py

+2
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
# Copyright (c) 2019 Nikita Sobolev <[email protected]>
4343
# Copyright (c) 2019 Oisín Moran <[email protected]>
4444
# Copyright (c) 2019 Fantix King <[email protected]>
45+
# Copyright (c) 2020 Peter Kolbus <[email protected]>
4546
# Copyright (c) 2020 ethan-leba <[email protected]>
4647
# Copyright (c) 2020 へーさん <[email protected]>
4748
# Copyright (c) 2020 Damien Baty <[email protected]>
@@ -51,6 +52,7 @@
5152
# Copyright (c) 2020 Gabriel R Sezefredo <[email protected]>
5253
# Copyright (c) 2020 Benny <[email protected]>
5354
# Copyright (c) 2020 Anubhav <[email protected]>
55+
# Copyright (c) 2021 Marc Mueller <[email protected]>
5456
# Copyright (c) 2021 Or Bahari <[email protected]>
5557

5658
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/checkers/classes.py

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
# Copyright (c) 2019 Andrzej Klajnert <[email protected]>
3434
# Copyright (c) 2019 Pascal Corpet <[email protected]>
3535
# Copyright (c) 2020 GergelyKalmar <[email protected]>
36+
# Copyright (c) 2021 tiagohonorato <[email protected]>
3637
# Copyright (c) 2021 Marc Mueller <[email protected]>
3738

3839
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/checkers/design_analysis.py

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
# Copyright (c) 2019 Michael Scott Cuthbert <[email protected]>
1616
# Copyright (c) 2020 hippo91 <[email protected]>
1717
# Copyright (c) 2020 Anthony Sottile <[email protected]>
18+
# Copyright (c) 2021 Marc Mueller <[email protected]>
1819

1920
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2021
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING

pylint/checkers/imports.py

+3
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,11 @@
3131
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
3232
# Copyright (c) 2019 Nick Smith <[email protected]>
3333
# Copyright (c) 2019 Paul Renvoisé <[email protected]>
34+
# Copyright (c) 2020 Peter Kolbus <[email protected]>
3435
# Copyright (c) 2020 Damien Baty <[email protected]>
3536
# Copyright (c) 2020 Anthony Sottile <[email protected]>
37+
# Copyright (c) 2021 Andrew Howe <[email protected]>
38+
# Copyright (c) 2021 Matus Valo <[email protected]>
3639

3740
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
3841
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING

pylint/checkers/misc.py

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
# Copyright (c) 2020 wtracy <[email protected]>
1717
# Copyright (c) 2020 Anthony Sottile <[email protected]>
1818
# Copyright (c) 2020 Benny <[email protected]>
19+
# Copyright (c) 2021 Konstantina Saketou <[email protected]>
1920

2021
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2122
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING

pylint/checkers/python3.py

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
# Copyright (c) 2019 Gabriel R Sezefredo <[email protected]>
2929
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
3030
# Copyright (c) 2019 bluesheeptoken <[email protected]>
31+
# Copyright (c) 2020 Peter Kolbus <[email protected]>
3132
# Copyright (c) 2020 谭九鼎 <[email protected]>
3233
# Copyright (c) 2020 Federico Bond <[email protected]>
3334
# Copyright (c) 2020 Athos Ribeiro <[email protected]>

pylint/checkers/typecheck.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,14 @@
3737
# Copyright (c) 2019 yory8 <[email protected]>
3838
# Copyright (c) 2019 Federico Bond <[email protected]>
3939
# Copyright (c) 2019 Pascal Corpet <[email protected]>
40+
# Copyright (c) 2020 Peter Kolbus <[email protected]>
4041
# Copyright (c) 2020 Julien Palard <[email protected]>
4142
# Copyright (c) 2020 Ram Rachum <[email protected]>
4243
# Copyright (c) 2020 Anthony Sottile <[email protected]>
4344
# Copyright (c) 2020 Anubhav <[email protected]>
44-
# Copyright (c) 2021 Ikraduya Edian <[email protected]>
4545
# Copyright (c) 2021 Marc Mueller <[email protected]>
46+
# Copyright (c) 2021 Jens H. Nielsen <[email protected]>
47+
# Copyright (c) 2021 Ikraduya Edian <[email protected]>
4648

4749
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
4850
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING

pylint/checkers/variables.py

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
# Copyright (c) 2020 Anthony Sottile <[email protected]>
4141
# Copyright (c) 2020 Ashley Whetter <[email protected]>
4242
# Copyright (c) 2021 Marc Mueller <[email protected]>
43+
# Copyright (c) 2021 Alexander Kapshuna <[email protected]>
4344

4445
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
4546
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING

pylint/extensions/bad_builtin.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Copyright (c) 2016, 2018, 2020 Claudiu Popa <[email protected]>
22
# Copyright (c) 2019, 2021 Pierre Sassoulas <[email protected]>
33
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
4+
# Copyright (c) 2020 Peter Kolbus <[email protected]>
45
# Copyright (c) 2020 hippo91 <[email protected]>
56

67
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/graph.py

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# Copyright (c) 2020 Damien Baty <[email protected]>
99
# Copyright (c) 2020 谭九鼎 <[email protected]>
1010
# Copyright (c) 2020 Benjamin Graham <[email protected]>
11+
# Copyright (c) 2021 Andrew Howe <[email protected]>
1112

1213
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
1314
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING

pylint/pyreverse/main.py

+2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
# Copyright (c) 2018 ssolanki <[email protected]>
88
# Copyright (c) 2019, 2021 Pierre Sassoulas <[email protected]>
99
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
10+
# Copyright (c) 2020 Peter Kolbus <[email protected]>
1011
# Copyright (c) 2020 hippo91 <[email protected]>
12+
# Copyright (c) 2021 Mark Byrne <[email protected]>
1113

1214
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
1315
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING

pylint/pyreverse/writer.py

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# Copyright (c) 2018 ssolanki <[email protected]>
99
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
1010
# Copyright (c) 2019 Kylian <[email protected]>
11+
# Copyright (c) 2021 Mark Byrne <[email protected]>
1112

1213
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
1314
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING

pylint/utils/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
# Copyright (c) 2018 Sushobhit <[email protected]>
3333
# Copyright (c) 2018 Reverb C <[email protected]>
3434
# Copyright (c) 2018 Nick Drozd <[email protected]>
35+
# Copyright (c) 2020 Peter Kolbus <[email protected]>
3536
# Copyright (c) 2020 Damien Baty <[email protected]>
3637

3738
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

tests/checkers/unittest_classes.py

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
99
# Copyright (c) 2019-2020 hippo91 <[email protected]>
1010
# Copyright (c) 2019 Ashley Whetter <[email protected]>
11+
# Copyright (c) 2021 tiagohonorato <[email protected]>
1112

1213
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
1314
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING

tests/test_functional.py

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
# Copyright (c) 2020 Damien Baty <[email protected]>
1616
# Copyright (c) 2020 Anthony Sottile <[email protected]>
1717
# Copyright (c) 2020 bernie gray <[email protected]>
18+
# Copyright (c) 2021 Marc Mueller <[email protected]>
1819

1920
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2021
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING

tests/test_import_graph.py

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
# Copyright (c) 2020 hippo91 <[email protected]>
1111
# Copyright (c) 2020 Damien Baty <[email protected]>
1212
# Copyright (c) 2020 Frank Harrison <[email protected]>
13+
# Copyright (c) 2021 Andrew Howe <[email protected]>
1314

1415
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
1516
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING

tests/unittest_pyreverse_writer.py

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# Copyright (c) 2019 Ashley Whetter <[email protected]>
1010
# Copyright (c) 2020 hippo91 <[email protected]>
1111
# Copyright (c) 2020 Anthony Sottile <[email protected]>
12+
# Copyright (c) 2021 Mark Byrne <[email protected]>
1213

1314
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
1415
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING

tests/utils/unittest_utils.py

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# Copyright (c) 2017 ttenhoeve-aa <[email protected]>
1212
# Copyright (c) 2017 Łukasz Rogalski <[email protected]>
1313
# Copyright (c) 2019 Ashley Whetter <[email protected]>
14+
# Copyright (c) 2020 Peter Kolbus <[email protected]>
1415
# Copyright (c) 2020 hippo91 <[email protected]>
1516

1617
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

0 commit comments

Comments
 (0)