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

Lines changed: 2 additions & 13 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 3 additions & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 3 additions & 1 deletion
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

0 commit comments

Comments
 (0)