Skip to content

Commit 0134554

Browse files
committed
Prepare 2.5.0 release for pylint
1 parent a0b8c2b commit 0134554

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

ChangeLog

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Pylint's ChangeLog
55
What's New in Pylint 2.5.0?
66
===========================
77

8-
Release date: TBA
8+
Release date: 2020-04-27
99

1010
* Fix a false negative for ``undefined-variable`` when using class attribute in comprehension.
1111

doc/whatsnew/2.5.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
**************************
44

55
:Release: 2.5
6-
:Date: TBC
6+
:Date: 2020-04-27
77

88

99
Summary -- Release highlights

pylint/__pkginfo__.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323

2424
# For an official release, use dev_version = None
2525
numversion = (2, 5, 0)
26-
dev_version = "1"
26+
dev_version = None
2727

2828
version = ".".join(str(num) for num in numversion)
2929
if dev_version is not None:
3030
version += "-dev" + str(dev_version)
3131

3232
install_requires = [
33-
"astroid>=2.3.0,<=2.5",
33+
"astroid>=2.4.0,<=2.5",
3434
"isort>=4.2.5,<5",
3535
"mccabe>=0.6,<0.7",
3636
"toml>=0.7.1",
@@ -59,6 +59,7 @@
5959
"Programming Language :: Python :: 3.5",
6060
"Programming Language :: Python :: 3.6",
6161
"Programming Language :: Python :: 3.7",
62+
"Programming Language :: Python :: 3.8",
6263
"Programming Language :: Python :: 3 :: Only",
6364
"Programming Language :: Python :: Implementation :: CPython",
6465
"Programming Language :: Python :: Implementation :: PyPy",

0 commit comments

Comments
 (0)