Skip to content

Commit 63baaa5

Browse files
authored
Require Pylint less than 2.10 (#78)
1 parent b5b2ff0 commit 63baaa5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def get_version(module='pylsp'):
5252
'pycodestyle>=2.7.0',
5353
'pydocstyle>=2.0.0',
5454
'pyflakes>=2.3.0,<2.4.0',
55-
'pylint>=2.5.0',
55+
'pylint>=2.5.0,<2.10.0',
5656
'rope>=0.10.5',
5757
'yapf',
5858
],
@@ -62,11 +62,11 @@ def get_version(module='pylsp'):
6262
'pycodestyle': ['pycodestyle>=2.7.0'],
6363
'pydocstyle': ['pydocstyle>=2.0.0'],
6464
'pyflakes': ['pyflakes>=2.3.0,<2.4.0'],
65-
'pylint': ['pylint>=2.5.0'],
65+
'pylint': ['pylint>=2.5.0,<2.10.0'],
6666
'rope': ['rope>0.10.5'],
6767
'yapf': ['yapf'],
68-
'test': ['pylint>=2.5.0', 'pytest', 'pytest-cov', 'coverage', 'numpy',
69-
'pandas', 'matplotlib', 'pyqt5', 'flaky'],
68+
'test': ['pylint>=2.5.0,<2.10.0', 'pytest', 'pytest-cov', 'coverage',
69+
'numpy', 'pandas', 'matplotlib', 'pyqt5', 'flaky'],
7070
},
7171
entry_points={
7272
'console_scripts': [

0 commit comments

Comments
 (0)