Skip to content

Commit 0f97f79

Browse files
authored
Merge pull request #894 from hippo91/astroid_2.5_test
Astroid 2.5 test
2 parents 6189473 + 636d0f5 commit 0f97f79

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+93
-28
lines changed

ChangeLog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
astroid's ChangeLog
33
===================
44

5-
What's New in astroid 2.5.0?
5+
What's New in astroid 2.5?
66
============================
7-
Release Date: TBA
7+
Release Date: 2021-02-15
88

99
* Adds `attr_fset` in the `PropertyModel` class.
1010

astroid/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Copyright (c) 2016 Moises Lopez <moylop260@vauxoo.com>
88
# Copyright (c) 2018 Bryce Guinta <bryce.paul.guinta@gmail.com>
99
# Copyright (c) 2019 Nick Drozd <nicholasdrozd@gmail.com>
10+
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
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

astroid/__pkginfo__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
# Copyright (c) 2018 Bryce Guinta <bryce.paul.guinta@gmail.com>
1515
# Copyright (c) 2019 Uilian Ries <uilianries@gmail.com>
1616
# Copyright (c) 2019 Thomas Hisch <t.hisch@gmail.com>
17+
# Copyright (c) 2020 David Gilman <davidgilman1@gmail.com>
18+
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
1719
# Copyright (c) 2020 Konrad Weihmann <kweihmann@outlook.com>
1820
# Copyright (c) 2020 Felix Mölder <felix.moelder@uni-due.de>
1921
# Copyright (c) 2020 Michael <michael-k@users.noreply.github.com>
@@ -23,7 +25,7 @@
2325

2426
"""astroid packaging information"""
2527

26-
version = "2.5.0"
28+
version = "2.5"
2729
numversion = tuple(int(elem) for elem in version.split(".") if elem.isdigit())
2830

2931
extras_require = {}

astroid/brain/brain_builtin_inference.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2014-2020 Claudiu Popa <pcmanticore@gmail.com>
2+
# Copyright (c) 2014-2021 Claudiu Popa <pcmanticore@gmail.com>
33
# Copyright (c) 2014-2015 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr>
44
# Copyright (c) 2015-2016 Ceridwen <ceridwenv@gmail.com>
55
# Copyright (c) 2015 Rene Zhang <rz99@cornell.edu>
@@ -9,6 +9,8 @@
99
# Copyright (c) 2019 Stanislav Levin <slev@altlinux.org>
1010
# Copyright (c) 2019 David Liu <david@cs.toronto.edu>
1111
# Copyright (c) 2019 Frédéric Chapoton <fchapoton2@gmail.com>
12+
# Copyright (c) 2020 David Gilman <davidgilman1@gmail.com>
13+
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
1214
# Copyright (c) 2020 Ram Rachum <ram@rachum.com>
1315

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

astroid/brain/brain_collections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (c) 2017 Derek Gustafson <degustaf@gmail.com>
55
# Copyright (c) 2018 Ioana Tagirta <ioana.tagirta@gmail.com>
66
# Copyright (c) 2019 Hugo van Kemenade <hugovk@users.noreply.github.com>
7-
# Copyright (c) 2021 Julien Palard <julien@palard.fr>
7+
# Copyright (c) 2020-2021 hippo91 <guillaume.peillex@gmail.com>
88

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

astroid/brain/brain_dateutil.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 <pcmanticore@gmail.com>
22
# Copyright (c) 2015 raylu <lurayl@gmail.com>
33
# Copyright (c) 2016 Ceridwen <ceridwenv@gmail.com>
4+
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
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_fstrings.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Copyright (c) 2017-2018, 2020 Claudiu Popa <pcmanticore@gmail.com>
2+
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
23
# Copyright (c) 2020 Karthikeyan Singaravelan <tir.karthi@gmail.com>
34

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

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) 2016 Giuseppe Scrivano <gscrivan@redhat.com>
1010
# Copyright (c) 2018 Christoph Reiter <reiter.christoph@gmail.com>
1111
# Copyright (c) 2019 Philipp Hörist <philipp@hoerist.com>
12+
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
1213

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

astroid/brain/brain_hashlib.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
# Copyright (c) 2018 David Poirier <david-poirier-csn@users.noreply.github.com>
33
# Copyright (c) 2018 wgehalo <wgehalo@gmail.com>
44
# Copyright (c) 2018 Ioana Tagirta <ioana.tagirta@gmail.com>
5+
# Copyright (c) 2020 David Gilman <davidgilman1@gmail.com>
6+
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
57

68
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
79
# 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,4 +1,5 @@
11
# Copyright (c) 2019-2020 Claudiu Popa <pcmanticore@gmail.com>
2+
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
23

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

0 commit comments

Comments
 (0)