summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2019-03-03 13:41:52 +0100
committerClaudiu Popa <pcmanticore@gmail.com>2019-03-03 13:41:52 +0100
commit01738a2deb098d50f798f08d74318a0c9cce31c5 (patch)
tree3b87a3747fd16f3abe97e68755817e4e88e73b0a
parent55c638537ac956c463b79b16e73a0505ae544dfe (diff)
downloadpylint-git-2.2.tar.gz
Prepare 2.2.3pylint-2.2.32.2
-rw-r--r--ChangeLog5
-rw-r--r--pylint/__pkginfo__.py4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index bae5108fa..3dad0ce0b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,11 @@
Pylint's ChangeLog
------------------
+What's New in Pylint 2.2.3?
+===========================
+
+* Pinned version of astroid that needs be installed for this release to work correctly.
+
What's New in Pylint 2.2.2?
===========================
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 4bbc8da19..6027e8f3d 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -25,7 +25,7 @@ from os.path import join
modname = distname = "pylint"
-numversion = (2, 2, 2)
+numversion = (2, 2, 3)
dev_version = None
string_version = ".".join(str(num) for num in numversion)
@@ -34,7 +34,7 @@ if dev_version:
else:
version = string_version
-install_requires = ["astroid>=2.0.0", "isort >= 4.2.5", "mccabe"]
+install_requires = ["astroid>=2.0,<2.2.0", "isort >= 4.2.5", "mccabe"]
dependency_links = [] # type: ignore