summaryrefslogtreecommitdiff
path: root/pylint/__pkginfo__.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2019-09-26 09:21:46 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2019-09-26 09:21:52 +0200
commitae3d4211175e27c6e45d4f67e764425655d7e18e (patch)
treef7c4f84aee49ac5398d42df1a265fd4b63097cc2 /pylint/__pkginfo__.py
parent277774397023211bf89ca58a2c92a6c7b8fb39fb (diff)
downloadpylint-git-ae3d4211175e27c6e45d4f67e764425655d7e18e.tar.gz
Pin astroid to the latest minor release
This will require a lock step release and update for pylint and astroid but should minimize the errors that result from an updated astroid version that has backwards incompatible issues.
Diffstat (limited to 'pylint/__pkginfo__.py')
-rw-r--r--pylint/__pkginfo__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 0ba1f9e37..0328ea9b5 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -29,7 +29,7 @@ version = ".".join(str(num) for num in numversion)
if dev_version is not None:
version += "-dev" + str(dev_version)
-install_requires = ["astroid>=2.3.0,<3", "isort>=4.2.5,<5", "mccabe>=0.6,<0.7"]
+install_requires = ["astroid>=2.3.0,<2.4", "isort>=4.2.5,<5", "mccabe>=0.6,<0.7"]
dependency_links = [] # type: ignore