From cf134f38c21dc2c7fde7b9efcb11fd4a7dc45b3c Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Mon, 22 Feb 2021 23:26:43 +0100 Subject: [PATCH] Partially revert astroid install requirement --- pylint/__pkginfo__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index 5d78adfea2..0fbdea9cbc 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -40,7 +40,7 @@ version += "-dev" + str(dev_version) install_requires = [ - "astroid==2.5.0", + "astroid>=2.5.0,<2.7", "isort>=4.2.5,<6", "mccabe>=0.6,<0.7", "toml>=0.7.1",