summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2020-04-27 11:49:52 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2020-04-27 11:49:52 +0200
commit089f510623e468c60b2f44365fec3db942591d3d (patch)
tree7ad9c3f66eef7f4609e1dd49c61b0f25fd4bc547
parent83bed57114eed45b1f90521c1d2e8e8dcebf0c1b (diff)
downloadpylint-git-089f510623e468c60b2f44365fec3db942591d3d.tar.gz
Pylint 2.5.0 requires astroid 2.4+ to work correctlypylint-2.5.0
-rw-r--r--pylint/__pkginfo__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index aa8b55c83..9cc235a55 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -36,7 +36,7 @@ if dev_version is not None:
version += "-dev" + str(dev_version)
install_requires = [
- "astroid>=2.3.0,<=2.5",
+ "astroid>=2.4.0,<=2.5",
"isort>=4.2.5,<5",
"mccabe>=0.6,<0.7",
"toml>=0.7.1",