summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2020-04-27 10:51:53 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2020-04-27 10:51:53 +0200
commit01345546f66dd9632a2f1e1e36cefcf7d293f9fe (patch)
tree1e839e2a24c0a3d0620b6c9ecb869b4079bb5100
parenta0b8c2b23d198d6b3ff7d6e22bd4749b8a8a99cc (diff)
downloadpylint-git-01345546f66dd9632a2f1e1e36cefcf7d293f9fe.tar.gz
Prepare 2.5.0 release for pylint
-rw-r--r--ChangeLog2
-rw-r--r--doc/whatsnew/2.5.rst2
-rw-r--r--pylint/__pkginfo__.py5
3 files changed, 5 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 22d2cf50e..2f7c22c77 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,7 +5,7 @@ Pylint's ChangeLog
What's New in Pylint 2.5.0?
===========================
-Release date: TBA
+Release date: 2020-04-27
* Fix a false negative for ``undefined-variable`` when using class attribute in comprehension.
diff --git a/doc/whatsnew/2.5.rst b/doc/whatsnew/2.5.rst
index 35ffbbdcc..172484cea 100644
--- a/doc/whatsnew/2.5.rst
+++ b/doc/whatsnew/2.5.rst
@@ -3,7 +3,7 @@
**************************
:Release: 2.5
-:Date: TBC
+:Date: 2020-04-27
Summary -- Release highlights
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 90312fd48..86822447b 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -23,14 +23,14 @@ from os.path import join
# For an official release, use dev_version = None
numversion = (2, 5, 0)
-dev_version = "1"
+dev_version = None
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,<=2.5",
+ "astroid>=2.4.0,<=2.5",
"isort>=4.2.5,<5",
"mccabe>=0.6,<0.7",
"toml>=0.7.1",
@@ -59,6 +59,7 @@ classifiers = [
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
+ "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",