Skip to content

Commit 89f4f06

Browse files
authored
Pin flake8 to be less than version 4 (#96)
1 parent 341bf46 commit 89f4f06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def get_version(module='pylsp'):
4747
extras_require={
4848
'all': [
4949
'autopep8',
50-
'flake8>=3.8.0',
50+
'flake8>=3.8.0,<4.0.0',
5151
'mccabe>=0.6.0,<0.7.0',
5252
'pycodestyle>=2.7.0',
5353
'pydocstyle>=2.0.0',
@@ -57,7 +57,7 @@ def get_version(module='pylsp'):
5757
'yapf',
5858
],
5959
'autopep8': ['autopep8'],
60-
'flake8': ['flake8>=3.8.0'],
60+
'flake8': ['flake8>=3.8.0,<4.0.0'],
6161
'mccabe': ['mccabe>=0.6.0,<0.7.0'],
6262
'pycodestyle': ['pycodestyle>=2.7.0'],
6363
'pydocstyle': ['pydocstyle>=2.0.0'],

0 commit comments

Comments
 (0)