diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2020-04-27 10:51:53 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2020-04-27 10:51:53 +0200 |
commit | 01345546f66dd9632a2f1e1e36cefcf7d293f9fe (patch) | |
tree | 1e839e2a24c0a3d0620b6c9ecb869b4079bb5100 | |
parent | a0b8c2b23d198d6b3ff7d6e22bd4749b8a8a99cc (diff) | |
download | pylint-git-01345546f66dd9632a2f1e1e36cefcf7d293f9fe.tar.gz |
Prepare 2.5.0 release for pylint
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | doc/whatsnew/2.5.rst | 2 | ||||
-rw-r--r-- | pylint/__pkginfo__.py | 5 |
3 files changed, 5 insertions, 4 deletions
@@ -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", |