From 95daecab4dece76e96e410033f6d659f283f3a57 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Sun, 28 Mar 2021 19:09:40 +0200 Subject: [PATCH] Bump astroid version to 2.5.2 --- ChangeLog | 3 +++ pylint/__pkginfo__.py | 2 +- requirements_test_min.txt | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 56262f3be0..407b79b3c0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -27,9 +27,12 @@ Release date: TBA .. Put bug fixes that will be cherry-picked to latest major version here +* Bump ``astroid`` version to ``2.5.2`` + * Fix false positive for ``method-hidden`` when using private attribute and method Closes #3936 + * ``use-symbolic-message-instead`` now also works on legacy messages like ``C0111`` (``missing-docstring``). * Remove unwanted print to stdout from ``_emit_no_member`` diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index 3fe88bd813..cdf8728710 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -39,7 +39,7 @@ version += "-dev" + str(dev_version) install_requires = [ - "astroid>=2.5.1,<2.7", + "astroid>=2.5.2,<2.7", "isort>=4.2.5,<6", "mccabe>=0.6,<0.7", "toml>=0.7.1", diff --git a/requirements_test_min.txt b/requirements_test_min.txt index 1d08ef6276..46590fce73 100644 --- a/requirements_test_min.txt +++ b/requirements_test_min.txt @@ -1,3 +1,3 @@ -astroid==2.5.1 +astroid==2.5.2 pytest~=6.2 pytest-benchmark~=3.2