summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-21 15:41:31 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-21 16:56:19 +0100
commit6e2de8e3a2e2c5586e876ca305f0844bdd822db3 (patch)
treeab65f2ab17f5a08872c3a3f760aeabf63a4f5314
parentb9d9ca239c7f552abb3755cb04d73e3cd34e4530 (diff)
downloadpylint-git-6e2de8e3a2e2c5586e876ca305f0844bdd822db3.tar.gz
Upgrade version to 2.7.0 and fix astroid to 2.5.0
-rw-r--r--pylint/__pkginfo__.py4
-rw-r--r--requirements_test_pypy.txt2
2 files changed, 3 insertions, 3 deletions
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index f87f96829..82f4e54dd 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -31,7 +31,7 @@
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)
@@ -39,7 +39,7 @@ 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",
diff --git a/requirements_test_pypy.txt b/requirements_test_pypy.txt
index b3586ae7d..b64d5cdf9 100644
--- a/requirements_test_pypy.txt
+++ b/requirements_test_pypy.txt
@@ -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