Skip to content

Commit

Permalink
Upgrade version to 2.7.0 and fix astroid to 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Feb 21, 2021
1 parent b9d9ca2 commit 6e2de8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@
from os.path import join

# For an official release, use dev_version = None
numversion = (2, 6, 1)
numversion = (2, 7, 0)
dev_version = 1

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

install_requires = [
"astroid>=2.4.0,<=2.6",
"astroid==2.5.0",
"isort>=4.2.5,<6",
"mccabe>=0.6,<0.7",
"toml>=0.7.1",
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_pypy.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
astroid @ git+git://github.com/PyCQA/astroid.git@master
astroid @ git+git://github.com/PyCQA/astroid.git@astroid-2.5
coveralls
coverage<5.0
pytest
Expand Down

0 comments on commit 6e2de8e

Please sign in to comment.