Skip to content

Commit c3b58a3

Browse files
Prepare for 2.5.2 release
1 parent 32ffe51 commit c3b58a3

35 files changed

+35
-4
lines changed

astroid/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
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 Pierre Sassoulas <[email protected]>
1112

1213
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
1314
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
# For an official release, use dev_version = None
3030
numversion = (2, 5, 2)
31-
dev_version = 1
31+
dev_version = None
3232

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

astroid/brain/brain_dateutil.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Copyright (c) 2015 raylu <[email protected]>
33
# Copyright (c) 2016 Ceridwen <[email protected]>
44
# Copyright (c) 2020-2021 hippo91 <[email protected]>
5+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
56

67
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
78
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/brain/brain_fstrings.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Copyright (c) 2017-2018, 2020 Claudiu Popa <[email protected]>
22
# Copyright (c) 2020-2021 hippo91 <[email protected]>
33
# Copyright (c) 2020 Karthikeyan Singaravelan <[email protected]>
4+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
45

56
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
67
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/brain/brain_hashlib.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# Copyright (c) 2018 Ioana Tagirta <[email protected]>
55
# Copyright (c) 2020-2021 hippo91 <[email protected]>
66
# Copyright (c) 2020 David Gilman <[email protected]>
7+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
78

89
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
910
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/brain/brain_http.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Copyright (c) 2019-2020 Claudiu Popa <[email protected]>
22
# Copyright (c) 2020-2021 hippo91 <[email protected]>
3+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
34

45
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
56
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/brain/brain_io.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Copyright (c) 2016, 2018, 2020 Claudiu Popa <[email protected]>
22
# Copyright (c) 2020-2021 hippo91 <[email protected]>
3+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
34

45
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
56
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/brain/brain_mechanize.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# Copyright (c) 2016 Ceridwen <[email protected]>
55
# Copyright (c) 2020-2021 hippo91 <[email protected]>
66
# Copyright (c) 2020 Peter Kolbus <[email protected]>
7+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
78

89
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
910
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/brain/brain_multiprocessing.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
33
# Copyright (c) 2020-2021 hippo91 <[email protected]>
44
# Copyright (c) 2020 David Gilman <[email protected]>
5+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
56

67
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
78
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/brain/brain_nose.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Copyright (c) 2015-2016, 2018, 2020 Claudiu Popa <[email protected]>
22
# Copyright (c) 2016 Ceridwen <[email protected]>
33
# Copyright (c) 2020-2021 hippo91 <[email protected]>
4+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
45

56
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
67
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/brain/brain_numpy_core_fromnumeric.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Copyright (c) 2019-2021 hippo91 <[email protected]>
22
# Copyright (c) 2020 Claudiu Popa <[email protected]>
3+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
34

45
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
56
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/brain/brain_numpy_core_function_base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Copyright (c) 2019-2021 hippo91 <[email protected]>
22
# Copyright (c) 2020 Claudiu Popa <[email protected]>
3+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
34

45
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
56
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/brain/brain_numpy_core_numeric.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Copyright (c) 2019-2021 hippo91 <[email protected]>
22
# Copyright (c) 2020 Claudiu Popa <[email protected]>
3+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
34

45
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
56
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/brain/brain_numpy_core_umath.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Copyright (c) 2019-2021 hippo91 <[email protected]>
22
# Copyright (c) 2020 Claudiu Popa <[email protected]>
3+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
34

45
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
56
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/brain/brain_numpy_random_mtrand.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Copyright (c) 2019-2021 hippo91 <[email protected]>
22
# Copyright (c) 2020 Claudiu Popa <[email protected]>
3+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
34

45
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
56
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/brain/brain_numpy_utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Copyright (c) 2019-2021 hippo91 <[email protected]>
22
# Copyright (c) 2019-2020 Claudiu Popa <[email protected]>
3+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
34

45
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
56
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/brain/brain_qt.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# Copyright (c) 2018 Ashley Whetter <[email protected]>
55
# Copyright (c) 2019 Antoine Boellinger <[email protected]>
66
# Copyright (c) 2020-2021 hippo91 <[email protected]>
7+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
78

89
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
910
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/brain/brain_scipy_signal.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Copyright (c) 2019 Valentin Valls <[email protected]>
22
# Copyright (c) 2020-2021 hippo91 <[email protected]>
33
# Copyright (c) 2020 Claudiu Popa <[email protected]>
4+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
45

56
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
67
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/brain/brain_ssl.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Copyright (c) 2016 Ceridwen <[email protected]>
33
# Copyright (c) 2019 Benjamin Elven <[email protected]>
44
# Copyright (c) 2020-2021 hippo91 <[email protected]>
5+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
56

67
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
78
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

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 Pierre Sassoulas <[email protected]>
89
# Copyright (c) 2021 Damien Baty <[email protected]>
910

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

astroid/brain/brain_typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Copyright (c) 2017 Łukasz Rogalski <[email protected]>
33
# Copyright (c) 2017 David Euresti <[email protected]>
44
# Copyright (c) 2018 Bryce Guinta <[email protected]>
5-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
65
# Copyright (c) 2021 Marc Mueller <[email protected]>
6+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
77

88
"""Astroid hooks for typing.py support."""
99
import sys

astroid/brain/brain_uuid.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Copyright (c) 2017-2018, 2020 Claudiu Popa <[email protected]>
22
# Copyright (c) 2020-2021 hippo91 <[email protected]>
3+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
34

45
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
56
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/decorators.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# Copyright (c) 2018 Bryce Guinta <[email protected]>
1010
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1111
# Copyright (c) 2020 Ram Rachum <[email protected]>
12+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1213
# Copyright (c) 2021 Marc Mueller <[email protected]>
1314

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

astroid/exceptions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Copyright (c) 2016 Derek Gustafson <[email protected]>
66
# Copyright (c) 2018 Bryce Guinta <[email protected]>
77
# Copyright (c) 2020-2021 hippo91 <[email protected]>
8+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
89

910
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
1011
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/manager.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# Copyright (c) 2020 Raphael Gaschignard <[email protected]>
1414
# Copyright (c) 2020 Anubhav <[email protected]>
1515
# Copyright (c) 2020 Ashley Whetter <[email protected]>
16+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1617

1718
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
1819
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/mixins.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Copyright (c) 2015 Florian Bruhin <[email protected]>
77
# Copyright (c) 2016 Jakub Wilk <[email protected]>
88
# Copyright (c) 2018 Nick Drozd <[email protected]>
9+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
910
# Copyright (c) 2021 Marc Mueller <[email protected]>
1011

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

astroid/scoped_nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
# Copyright (c) 2020 Peter Kolbus <[email protected]>
2424
# Copyright (c) 2020 Tim Martin <[email protected]>
2525
# Copyright (c) 2020 Ram Rachum <[email protected]>
26-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2726
# Copyright (c) 2021 Marc Mueller <[email protected]>
27+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2828

2929
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
3030
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

astroid/util.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) 2020-2021 hippo91 <[email protected]>
66
# Copyright (c) 2020 Bryce Guinta <[email protected]>
7+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
78

89
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
910
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

tests/resources.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Copyright (c) 2019 Ashley Whetter <[email protected]>
66
# Copyright (c) 2020-2021 hippo91 <[email protected]>
77
# Copyright (c) 2020 David Cain <[email protected]>
8+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
89

910
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
1011
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

tests/unittest_brain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
# Copyright (c) 2019 Grygorii Iermolenko <[email protected]>
2525
# Copyright (c) 2020 David Gilman <[email protected]>
2626
# Copyright (c) 2020 Peter Kolbus <[email protected]>
27-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2827
# Copyright (c) 2021 Marc Mueller <[email protected]>
28+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2929
# Copyright (c) 2021 Damien Baty <[email protected]>
3030

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

tests/unittest_helpers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Copyright (c) 2015-2016 Ceridwen <[email protected]>
33
# Copyright (c) 2019 Ashley Whetter <[email protected]>
44
# Copyright (c) 2020 David Gilman <[email protected]>
5+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
56
# Copyright (c) 2021 hippo91 <[email protected]>
67

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

tests/unittest_objects.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Copyright (c) 2018 Bryce Guinta <[email protected]>
44
# Copyright (c) 2019 Ashley Whetter <[email protected]>
55
# Copyright (c) 2020 David Gilman <[email protected]>
6+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
67
# Copyright (c) 2021 hippo91 <[email protected]>
78

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

tests/unittest_raw_building.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Copyright (c) 2019 Ashley Whetter <[email protected]>
88
# Copyright (c) 2020-2021 hippo91 <[email protected]>
99
# Copyright (c) 2020 David Gilman <[email protected]>
10+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1011

1112
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
1213
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

tests/unittest_scoped_nodes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
# Copyright (c) 2019 Peter de Blanc <[email protected]>
2121
# Copyright (c) 2020 David Gilman <[email protected]>
2222
# Copyright (c) 2020 Tim Martin <[email protected]>
23+
# Copyright (c) 2021 Marc Mueller <[email protected]>
2324
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2425

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

tests/unittest_utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Copyright (c) 2016 Dave Baum <[email protected]>
66
# Copyright (c) 2019 Ashley Whetter <[email protected]>
77
# Copyright (c) 2020-2021 hippo91 <[email protected]>
8+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
89

910
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
1011
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER

0 commit comments

Comments
 (0)