Skip to content

Commit e1bf25e

Browse files
Bump astroid to 2.8.1, update changelog
1 parent 47985f3 commit e1bf25e

35 files changed

+58
-25
lines changed

ChangeLog

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,16 @@ Release date: TBA
88

99

1010

11-
What's New in astroid 2.8.1?
11+
What's New in astroid 2.8.2?
1212
============================
1313
Release date: TBA
1414

15+
16+
17+
What's New in astroid 2.8.1?
18+
============================
19+
Release date: 2021-10-06
20+
1521
* Adds support of type hints inside numpy's brains.
1622

1723
Closes PyCQA/pylint#4326
@@ -45,6 +51,13 @@ Release date: TBA
4551
suited for pylint. Import them from ``pylint.checkers.utils`` instead
4652
(requires pylint ``2.12``).
4753

54+
* Suppress the conditional between applied brains and dynamic import authorized
55+
modules. (Revert the "The transforms related to a module are applied only if this
56+
module has not been explicitly authorized to be imported" of version 2.7.3)
57+
58+
* Adds a brain to infer the ``numpy.ma.masked_where`` function.
59+
60+
Closes PyCQA/pylint#3342
4861

4962
What's New in astroid 2.8.0?
5063
============================
@@ -73,14 +86,6 @@ Release date: 2021-09-14
7386

7487
Closes PyCQA/pylint#4963
7588

76-
* Suppress the conditional between applied brains and dynamic import authorized
77-
modules. (Revert the "The transforms related to a module are applied only if this
78-
module has not been explicitly authorized to be imported" of version 2.7.3)
79-
80-
* Adds a brain to infer the ``numpy.ma.masked_where`` function.
81-
82-
Closes PyCQA/pylint#3342
83-
8489

8590
What's New in astroid 2.7.3?
8691
============================

astroid/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
# Copyright (c) 2018 Bryce Guinta <[email protected]>
99
# Copyright (c) 2019 Nick Drozd <[email protected]>
1010
# Copyright (c) 2020-2021 hippo91 <[email protected]>
11-
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1211
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
12+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1313
# Copyright (c) 2021 Marc Mueller <[email protected]>
1414

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

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.8.0"
27+
__version__ = "2.8.1"
2828
version = __version__

astroid/bases.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
# Copyright (c) 2018 Bryce Guinta <[email protected]>
1414
# Copyright (c) 2018 Daniel Colascione <[email protected]>
1515
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
16+
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>
17+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1618
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1719
# Copyright (c) 2021 David Liu <[email protected]>
1820
# Copyright (c) 2021 doranid <[email protected]>

astroid/brain/brain_builtin_inference.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1212
# Copyright (c) 2020 David Gilman <[email protected]>
1313
# Copyright (c) 2020 Ram Rachum <[email protected]>
14+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1415
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1516
# Copyright (c) 2021 Nick Drozd <[email protected]>
1617
# Copyright (c) 2021 Marc Mueller <[email protected]>

astroid/brain/brain_gi.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# Copyright (c) 2018 Christoph Reiter <[email protected]>
1010
# Copyright (c) 2019 Philipp Hörist <[email protected]>
1111
# Copyright (c) 2020-2021 hippo91 <[email protected]>
12+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1213
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1314
# Copyright (c) 2021 Marc Mueller <[email protected]>
1415

astroid/brain/brain_namedtuple_enum.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@
1414
# Copyright (c) 2019 Ashley Whetter <[email protected]>
1515
# Copyright (c) 2020 hippo91 <[email protected]>
1616
# Copyright (c) 2020 Ram Rachum <[email protected]>
17-
# Copyright (c) 2021 Dimitri Prybysh <[email protected]>
17+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1818
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
19+
# Copyright (c) 2021 Dimitri Prybysh <[email protected]>
1920
# Copyright (c) 2021 David Liu <[email protected]>
2021
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>
2122
# Copyright (c) 2021 Marc Mueller <[email protected]>

astroid/brain/brain_numpy_core_numerictypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2020 hippo91 <[email protected]>
1+
# Copyright (c) 2019-2021 hippo91 <[email protected]>
22
# Copyright (c) 2020 Claudiu Popa <[email protected]>
33
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
44
# Copyright (c) 2021 Marc Mueller <[email protected]>

astroid/brain/brain_numpy_ndarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) 2015-2016, 2018-2020 Claudiu Popa <[email protected]>
22
# Copyright (c) 2016 Ceridwen <[email protected]>
3-
# Copyright (c) 2017-2020 hippo91 <[email protected]>
3+
# Copyright (c) 2017-2021 hippo91 <[email protected]>
44
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
55
# Copyright (c) 2021 Marc Mueller <[email protected]>
66

astroid/brain/brain_subprocess.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
66
# Copyright (c) 2020-2021 hippo91 <[email protected]>
77
# Copyright (c) 2020 Peter Pentchev <[email protected]>
8+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
89
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
910
# Copyright (c) 2021 Marc Mueller <[email protected]>
1011
# Copyright (c) 2021 Damien Baty <[email protected]>

0 commit comments

Comments
 (0)