Skip to content

Commit f94eb5f

Browse files
Bump astroid to 2.7.3, update changelog
1 parent 7147b7e commit f94eb5f

File tree

12 files changed

+22
-10
lines changed

12 files changed

+22
-10
lines changed

ChangeLog

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ What's New in astroid 2.8.0?
66
============================
77
Release date: TBA
88

9+
10+
What's New in astroid 2.7.4?
11+
============================
12+
Release date: TBA
13+
14+
15+
16+
What's New in astroid 2.7.3?
17+
============================
18+
Release date: 2021-08-30
19+
920
* The transforms related to a module are applied only if this module has not been explicitly authorized to be imported
1021
(i.e is not in AstroidManager.extension_package_whitelist). Solves the following issues if numpy is authorized to be imported
1122
through the `extension-pkg-allow-list` option.
@@ -28,11 +39,6 @@ Release date: TBA
2839

2940
Closes PyCQA/pylint#4220
3041

31-
32-
What's New in astroid 2.7.3?
33-
============================
34-
Release date: TBA
35-
3642
* Adds a brain for the ctypes module.
3743

3844
Closes PyCQA/pylint#4896

astroid/__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
2525
# For details: https://github.com/PyCQA/astroid/blob/main/LICENSE
2626

27-
__version__ = "2.7.3-dev0"
27+
__version__ = "2.7.3"
2828
version = __version__

astroid/arguments.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Copyright (c) 2018 Anthony Sottile <[email protected]>
66
# Copyright (c) 2020 hippo91 <[email protected]>
77
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
8+
# Copyright (c) 2021 David Liu <[email protected]>
89
# Copyright (c) 2021 Marc Mueller <[email protected]>
910

1011
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html

astroid/bases.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# Copyright (c) 2018 Daniel Colascione <[email protected]>
1515
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
1616
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
17+
# Copyright (c) 2021 David Liu <[email protected]>
1718
# Copyright (c) 2021 doranid <[email protected]>
1819
# Copyright (c) 2021 Marc Mueller <[email protected]>
1920
# Copyright (c) 2021 Andrew Haigh <[email protected]>

astroid/context.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# Copyright (c) 2018 Nick Drozd <[email protected]>
55
# Copyright (c) 2019-2021 hippo91 <[email protected]>
66
# Copyright (c) 2020 Bryce Guinta <[email protected]>
7+
# Copyright (c) 2021 David Liu <[email protected]>
78
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
89
# Copyright (c) 2021 Marc Mueller <[email protected]>
910
# Copyright (c) 2021 Andrew Haigh <[email protected]>

astroid/decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (c) 2015-2016 Ceridwen <[email protected]>
33
# Copyright (c) 2015 Florian Bruhin <[email protected]>
44
# Copyright (c) 2016 Derek Gustafson <[email protected]>
5-
# Copyright (c) 2018 Nick Drozd <[email protected]>
5+
# Copyright (c) 2018, 2021 Nick Drozd <[email protected]>
66
# Copyright (c) 2018 Tomas Gavenciak <[email protected]>
77
# Copyright (c) 2018 Ashley Whetter <[email protected]>
88
# Copyright (c) 2018 HoverHell <[email protected]>

astroid/helpers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Copyright (c) 2020 Bryce Guinta <[email protected]>
77
# Copyright (c) 2020 Ram Rachum <[email protected]>
88
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
9+
# Copyright (c) 2021 David Liu <[email protected]>
910
# Copyright (c) 2021 Marc Mueller <[email protected]>
1011
# Copyright (c) 2021 Andrew Haigh <[email protected]>
1112

astroid/inference.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
# Copyright (c) 2018 HoverHell <[email protected]>
1818
# Copyright (c) 2020 Leandro T. C. Melo <[email protected]>
1919
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
20+
# Copyright (c) 2021 David Liu <[email protected]>
2021
# Copyright (c) 2021 Marc Mueller <[email protected]>
2122
# Copyright (c) 2021 Andrew Haigh <[email protected]>
2223

astroid/modutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
1616
# Copyright (c) 2019 markmcclain <[email protected]>
1717
# Copyright (c) 2019 BasPH <[email protected]>
18-
# Copyright (c) 2020 hippo91 <[email protected]>
18+
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1919
# Copyright (c) 2020 Peter Kolbus <[email protected]>
2020
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2121
# Copyright (c) 2021 Marc Mueller <[email protected]>

astroid/nodes/scoped_nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
# Copyright (c) 2020 Tim Martin <[email protected]>
2525
# Copyright (c) 2020 Ram Rachum <[email protected]>
2626
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
27-
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>
2827
# Copyright (c) 2021 David Liu <[email protected]>
28+
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>
2929
# Copyright (c) 2021 doranid <[email protected]>
3030
# Copyright (c) 2021 Marc Mueller <[email protected]>
3131
# Copyright (c) 2021 Andrew Haigh <[email protected]>

0 commit comments

Comments
 (0)