summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-25 11:54:23 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-25 12:03:42 +0200
commit3eb0362dc42642e3e2774d7523a1e73d71394064 (patch)
tree813d55ebe1c3d2b26c2216bc1d22f3d2e6fa3928
parentaf1ac5ebe1c845b7eb736863826d75e3994c496c (diff)
downloadpylint-git-pylint-2.8.1.tar.gz
Prepare 2.8.1 releasepylint-2.8.1
-rw-r--r--pylint/__pkginfo__.py2
-rw-r--r--requirements_test_min.txt2
-rw-r--r--setup.cfg2
3 files changed, 3 insertions, 3 deletions
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index d01c6a56a..60e011019 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -6,7 +6,7 @@ from typing import Optional
__version__ = "2.8.1"
# For an official release, use 'alpha_version = False' and 'dev_version = None'
alpha_version: bool = False # Release will be an alpha version if True (ex: '1.2.3a6')
-dev_version: Optional[int] = 1
+dev_version: Optional[int] = None
if dev_version is not None:
if alpha_version:
diff --git a/requirements_test_min.txt b/requirements_test_min.txt
index 88bff62bc..b8f39c7dd 100644
--- a/requirements_test_min.txt
+++ b/requirements_test_min.txt
@@ -1,4 +1,4 @@
-e .
-astroid==2.5.5 # Pinned to a specific version for tests
+astroid==2.5.6 # Pinned to a specific version for tests
pytest~=6.2
pytest-benchmark~=3.4
diff --git a/setup.cfg b/setup.cfg
index 1475d5c03..70bc18f1c 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -41,7 +41,7 @@ project_urls =
[options]
packages = find:
install_requires =
- astroid>=2.5.4,<2.7
+ astroid>=2.5.6,<2.7
isort>=4.2.5,<6
mccabe>=0.6,<0.7
toml>=0.7.1