summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-16 08:22:54 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-16 10:25:37 +0100
commitc1d58e721e7ddb55afcc4f00abbc20fe89732a01 (patch)
treef461e85a12ba3005359f73cf895b82e808059b35
parent8197144d82469ed39d1f4f3c345efee198ec9212 (diff)
downloadpylint-git-c1d58e721e7ddb55afcc4f00abbc20fe89732a01.tar.gz
Fix #4093 by setting astroid dependencie as < 2.5
-rw-r--r--pylint/__pkginfo__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 11e46003d..a61b0cd25 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -40,7 +40,7 @@ if dev_version is not None:
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",