From c1d58e721e7ddb55afcc4f00abbc20fe89732a01 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Tue, 16 Feb 2021 08:22:54 +0100 Subject: [PATCH] Fix #4093 by setting astroid dependencie as < 2.5 --- pylint/__pkginfo__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index 11e46003d4..a61b0cd25a 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -40,7 +40,7 @@ version += "-dev" + str(dev_version) install_requires = [ - "astroid>=2.4.0,<=2.5", + "astroid>=2.4.0,<2.5", "isort>=4.2.5,<6", "mccabe>=0.6,<0.7", "toml>=0.7.1",