From d7b42b8878e270e5c8b90aea89d64a011b534f23 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Thu, 17 Jun 2021 10:21:08 +0200 Subject: Bump pylint to 2.9.0-dev1, update changelog --- pylint/__pkginfo__.py | 2 +- pylint/checkers/base.py | 1 + pylint/checkers/classes.py | 2 ++ pylint/checkers/design_analysis.py | 1 + pylint/checkers/exceptions.py | 1 + pylint/checkers/imports.py | 3 ++- pylint/checkers/logging.py | 1 + pylint/checkers/mapreduce_checker.py | 2 +- pylint/checkers/python3.py | 1 + pylint/checkers/similar.py | 2 ++ pylint/checkers/spelling.py | 1 + pylint/checkers/stdlib.py | 3 ++- pylint/checkers/strings.py | 1 + pylint/checkers/typecheck.py | 2 ++ pylint/checkers/utils.py | 1 + pylint/extensions/_check_docs_utils.py | 1 + pylint/pyreverse/utils.py | 1 + pylint/reporters/__init__.py | 1 + pylint/reporters/ureports/text_writer.py | 1 + tbump.toml | 2 +- tests/checkers/unittest_classes.py | 1 + tests/checkers/unittest_similar.py | 1 + tests/checkers/unittest_strings.py | 1 + tests/extensions/test_check_raise_docs.py | 1 + tests/lint/unittest_lint.py | 2 ++ tests/test_func.py | 1 + tests/test_import_graph.py | 1 + tests/test_self.py | 1 + tests/unittest_pyreverse_diadefs.py | 2 ++ tests/unittest_reporting.py | 1 + 30 files changed, 37 insertions(+), 5 deletions(-) diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index 88b47fc2c..681c69340 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -2,7 +2,7 @@ # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE from typing import Tuple -__version__ = "2.9.0-dev0" +__version__ = "2.9.0-dev1" def get_numversion_from_version(v: str) -> Tuple: diff --git a/pylint/checkers/base.py b/pylint/checkers/base.py index 1dbe12035..880b87cbf 100644 --- a/pylint/checkers/base.py +++ b/pylint/checkers/base.py @@ -53,6 +53,7 @@ # Copyright (c) 2020 Benny # Copyright (c) 2020 Anubhav <35621759+anubh-v@users.noreply.github.com> # Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> +# Copyright (c) 2021 David Liu # Copyright (c) 2021 Andreas Finkler # Copyright (c) 2021 Or Bahari diff --git a/pylint/checkers/classes.py b/pylint/checkers/classes.py index ab918c265..4d86a6bbb 100644 --- a/pylint/checkers/classes.py +++ b/pylint/checkers/classes.py @@ -34,6 +34,8 @@ # Copyright (c) 2019 Pascal Corpet # Copyright (c) 2020 GergelyKalmar # Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> +# Copyright (c) 2021 yushao2 <36848472+yushao2@users.noreply.github.com> +# Copyright (c) 2021 Konstantina Saketou <56515303+ksaketou@users.noreply.github.com> # Copyright (c) 2021 James Sinclair # Copyright (c) 2021 tiagohonorato <61059243+tiagohonorato@users.noreply.github.com> diff --git a/pylint/checkers/design_analysis.py b/pylint/checkers/design_analysis.py index c410fa86c..09b28b3d4 100644 --- a/pylint/checkers/design_analysis.py +++ b/pylint/checkers/design_analysis.py @@ -16,6 +16,7 @@ # Copyright (c) 2020 hippo91 # Copyright (c) 2020 Anthony Sottile # Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> +# Copyright (c) 2021 yushao2 <36848472+yushao2@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/pylint/checkers/exceptions.py b/pylint/checkers/exceptions.py index 6e483b390..41e420461 100644 --- a/pylint/checkers/exceptions.py +++ b/pylint/checkers/exceptions.py @@ -26,6 +26,7 @@ # Copyright (c) 2020 hippo91 # Copyright (c) 2020 Ram Rachum # Copyright (c) 2020 Anthony Sottile +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/pylint/checkers/imports.py b/pylint/checkers/imports.py index 7f5b48d9a..ceadaef90 100644 --- a/pylint/checkers/imports.py +++ b/pylint/checkers/imports.py @@ -34,9 +34,10 @@ # Copyright (c) 2020 Peter Kolbus # Copyright (c) 2020 Damien Baty # Copyright (c) 2020 Anthony Sottile +# Copyright (c) 2021 yushao2 <36848472+yushao2@users.noreply.github.com> # Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> -# Copyright (c) 2021 Andrew Howe # Copyright (c) 2021 Matus Valo +# Copyright (c) 2021 Andrew Howe # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/pylint/checkers/logging.py b/pylint/checkers/logging.py index b44d41047..084c7a96e 100644 --- a/pylint/checkers/logging.py +++ b/pylint/checkers/logging.py @@ -17,6 +17,7 @@ # Copyright (c) 2019 Djailla # Copyright (c) 2019 Svet # Copyright (c) 2020 Anthony Sottile +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/pylint/checkers/mapreduce_checker.py b/pylint/checkers/mapreduce_checker.py index d8058e205..36cc012c4 100644 --- a/pylint/checkers/mapreduce_checker.py +++ b/pylint/checkers/mapreduce_checker.py @@ -1,6 +1,6 @@ # Copyright (c) 2020 Frank Harrison -# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Copyright (c) 2021 Pierre Sassoulas +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/pylint/checkers/python3.py b/pylint/checkers/python3.py index 2762458c5..53b75344a 100644 --- a/pylint/checkers/python3.py +++ b/pylint/checkers/python3.py @@ -33,6 +33,7 @@ # Copyright (c) 2020 Federico Bond # Copyright (c) 2020 Athos Ribeiro # Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> +# Copyright (c) 2021 bot # Copyright (c) 2021 Tiago Honorato # Copyright (c) 2021 tiagohonorato <61059243+tiagohonorato@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/pylint/checkers/similar.py b/pylint/checkers/similar.py index fb0892c1a..048abd1d7 100644 --- a/pylint/checkers/similar.py +++ b/pylint/checkers/similar.py @@ -17,6 +17,8 @@ # Copyright (c) 2020 Eli Fine # Copyright (c) 2020 hippo91 # Copyright (c) 2020 Shiv Venkatasubrahmanyam +# Copyright (c) 2021 bot +# Copyright (c) 2021 Aditya Gupta # Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/pylint/checkers/spelling.py b/pylint/checkers/spelling.py index 84208f4d0..718d607ab 100644 --- a/pylint/checkers/spelling.py +++ b/pylint/checkers/spelling.py @@ -17,6 +17,7 @@ # Copyright (c) 2020 Ganden Schaffner # Copyright (c) 2020 hippo91 # Copyright (c) 2020 Damien Baty +# Copyright (c) 2021 bot # Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Copyright (c) 2021 Andreas Finkler # Copyright (c) 2021 Eli Fine diff --git a/pylint/checkers/stdlib.py b/pylint/checkers/stdlib.py index 1c76dd256..d450dbc70 100644 --- a/pylint/checkers/stdlib.py +++ b/pylint/checkers/stdlib.py @@ -26,8 +26,9 @@ # Copyright (c) 2020 hippo91 # Copyright (c) 2020 谭九鼎 <109224573@qq.com> # Copyright (c) 2020 Anthony Sottile -# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Copyright (c) 2021 Matus Valo +# Copyright (c) 2021 victor <16359131+jiajunsu@users.noreply.github.com> +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/pylint/checkers/strings.py b/pylint/checkers/strings.py index cb00acea7..a3c8c880c 100644 --- a/pylint/checkers/strings.py +++ b/pylint/checkers/strings.py @@ -25,6 +25,7 @@ # Copyright (c) 2020 谭九鼎 <109224573@qq.com> # Copyright (c) 2020 Anthony # Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> +# Copyright (c) 2021 Peter Kolbus # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/pylint/checkers/typecheck.py b/pylint/checkers/typecheck.py index f1369eab5..8ee88ff86 100644 --- a/pylint/checkers/typecheck.py +++ b/pylint/checkers/typecheck.py @@ -43,6 +43,8 @@ # Copyright (c) 2020 Anthony Sottile # Copyright (c) 2020 Anubhav <35621759+anubh-v@users.noreply.github.com> # Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> +# Copyright (c) 2021 yushao2 <36848472+yushao2@users.noreply.github.com> +# Copyright (c) 2021 Andrew Haigh # Copyright (c) 2021 Jens H. Nielsen # Copyright (c) 2021 Ikraduya Edian diff --git a/pylint/checkers/utils.py b/pylint/checkers/utils.py index 726e0e367..ac0ef1d23 100644 --- a/pylint/checkers/utils.py +++ b/pylint/checkers/utils.py @@ -42,6 +42,7 @@ # Copyright (c) 2020 Slavfox # Copyright (c) 2020 Anthony Sottile # Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> +# Copyright (c) 2021 yushao2 <36848472+yushao2@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/pylint/extensions/_check_docs_utils.py b/pylint/extensions/_check_docs_utils.py index cabd5128f..ca784599d 100644 --- a/pylint/extensions/_check_docs_utils.py +++ b/pylint/extensions/_check_docs_utils.py @@ -13,6 +13,7 @@ # Copyright (c) 2019 Hugo van Kemenade # Copyright (c) 2019 Danny Hermes # Copyright (c) 2019 Zeb Nicholls +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Copyright (c) 2021 Pierre Sassoulas # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/pylint/pyreverse/utils.py b/pylint/pyreverse/utils.py index 34558aac1..a24d227ee 100644 --- a/pylint/pyreverse/utils.py +++ b/pylint/pyreverse/utils.py @@ -10,6 +10,7 @@ # Copyright (c) 2020 yeting li # Copyright (c) 2020 Anthony Sottile # Copyright (c) 2020 bernie gray +# Copyright (c) 2021 Andreas Finkler # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/pylint/reporters/__init__.py b/pylint/reporters/__init__.py index 1721be7b6..3c60dfdbb 100644 --- a/pylint/reporters/__init__.py +++ b/pylint/reporters/__init__.py @@ -14,6 +14,7 @@ # Copyright (c) 2019, 2021 Pierre Sassoulas # Copyright (c) 2020 hippo91 # Copyright (c) 2020 Anthony Sottile +# Copyright (c) 2021 ruro # Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/pylint/reporters/ureports/text_writer.py b/pylint/reporters/ureports/text_writer.py index e4f773879..e9ee80a88 100644 --- a/pylint/reporters/ureports/text_writer.py +++ b/pylint/reporters/ureports/text_writer.py @@ -3,6 +3,7 @@ # Copyright (c) 2019-2021 Pierre Sassoulas # Copyright (c) 2019 Hugo van Kemenade # Copyright (c) 2020 hippo91 +# Copyright (c) 2021 bot # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/tbump.toml b/tbump.toml index da4f7836b..aa54f05ed 100644 --- a/tbump.toml +++ b/tbump.toml @@ -1,7 +1,7 @@ github_url = "https://github.com/PyCQA/pylint" [version] -current = "2.9.0-dev0" +current = "2.9.0-dev1" regex = ''' ^(?P0|[1-9]\d*) \. diff --git a/tests/checkers/unittest_classes.py b/tests/checkers/unittest_classes.py index 18e9a7e3e..47ac02dde 100644 --- a/tests/checkers/unittest_classes.py +++ b/tests/checkers/unittest_classes.py @@ -8,6 +8,7 @@ # Copyright (c) 2019-2021 Pierre Sassoulas # Copyright (c) 2019-2020 hippo91 # Copyright (c) 2019 Ashley Whetter +# Copyright (c) 2021 yushao2 <36848472+yushao2@users.noreply.github.com> # Copyright (c) 2021 tiagohonorato <61059243+tiagohonorato@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/tests/checkers/unittest_similar.py b/tests/checkers/unittest_similar.py index fc0035861..12b54e5c9 100644 --- a/tests/checkers/unittest_similar.py +++ b/tests/checkers/unittest_similar.py @@ -12,6 +12,7 @@ # Copyright (c) 2020 Frank Harrison # Copyright (c) 2020 Eli Fine # Copyright (c) 2020 hippo91 +# Copyright (c) 2021 Aditya Gupta # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/tests/checkers/unittest_strings.py b/tests/checkers/unittest_strings.py index d5d0244b5..12b2b5139 100644 --- a/tests/checkers/unittest_strings.py +++ b/tests/checkers/unittest_strings.py @@ -5,6 +5,7 @@ # Copyright (c) 2019-2021 Pierre Sassoulas # Copyright (c) 2019 Ashley Whetter # Copyright (c) 2020 hippo91 +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/tests/extensions/test_check_raise_docs.py b/tests/extensions/test_check_raise_docs.py index 80384e192..3e3d47157 100644 --- a/tests/extensions/test_check_raise_docs.py +++ b/tests/extensions/test_check_raise_docs.py @@ -8,6 +8,7 @@ # Copyright (c) 2019 Hugo van Kemenade # Copyright (c) 2019 Danny Hermes # Copyright (c) 2020 hippo91 +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/tests/lint/unittest_lint.py b/tests/lint/unittest_lint.py index 21748a507..3485b16f1 100644 --- a/tests/lint/unittest_lint.py +++ b/tests/lint/unittest_lint.py @@ -28,6 +28,8 @@ # Copyright (c) 2020 Martin Vielsmaier # Copyright (c) 2020 hippo91 # Copyright (c) 2020 Damien Baty +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> +# Copyright (c) 2021 Andreas Finkler # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/tests/test_func.py b/tests/test_func.py index 3141619f6..15edf59e0 100644 --- a/tests/test_func.py +++ b/tests/test_func.py @@ -12,6 +12,7 @@ # Copyright (c) 2019 Ashley Whetter # Copyright (c) 2020 hippo91 # Copyright (c) 2020 Anthony Sottile +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/tests/test_import_graph.py b/tests/test_import_graph.py index 9a4071220..7cbaea2e8 100644 --- a/tests/test_import_graph.py +++ b/tests/test_import_graph.py @@ -10,6 +10,7 @@ # Copyright (c) 2020 hippo91 # Copyright (c) 2020 Damien Baty # Copyright (c) 2020 Frank Harrison +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Copyright (c) 2021 Andrew Howe # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/tests/test_self.py b/tests/test_self.py index 6dc1d0a2a..b47e17453 100644 --- a/tests/test_self.py +++ b/tests/test_self.py @@ -25,6 +25,7 @@ # Copyright (c) 2020 Clément Pit-Claudel # Copyright (c) 2020 Anthony Sottile # Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> +# Copyright (c) 2021 Dr. Nick # Copyright (c) 2021 Andreas Finkler # Copyright (c) 2021 chohner # Copyright (c) 2021 Louis Sautier diff --git a/tests/unittest_pyreverse_diadefs.py b/tests/unittest_pyreverse_diadefs.py index 25a8fc363..beb1f7566 100644 --- a/tests/unittest_pyreverse_diadefs.py +++ b/tests/unittest_pyreverse_diadefs.py @@ -10,6 +10,8 @@ # Copyright (c) 2020 hippo91 # Copyright (c) 2020 Damien Baty # Copyright (c) 2020 Anthony Sottile +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> +# Copyright (c) 2021 bot # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/tests/unittest_reporting.py b/tests/unittest_reporting.py index 554f325cf..1c4bda9c7 100644 --- a/tests/unittest_reporting.py +++ b/tests/unittest_reporting.py @@ -9,6 +9,7 @@ # Copyright (c) 2019-2021 Pierre Sassoulas # Copyright (c) 2019 Ashley Whetter # Copyright (c) 2020 hippo91 +# Copyright (c) 2021 ruro # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE -- cgit v1.2.1