Skip to content

Commit c35cc13

Browse files
authored
Update requirements on flake8 and its dependencies (#102)
1 parent 1b649df commit c35cc13

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

.github/workflows/test-linux.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ jobs:
4040
/tmp/pyenv/bin/python -m pip install loghub
4141
- run: python -m pip install --upgrade pip setuptools
4242
- run: pip install -e .[all,test]
43+
- name: Show test environment
44+
run: pip list
4345
- run: pytest -v test/
4446
# Enable this if SSH debugging is required
4547
# - name: Setup tmate session

.github/workflows/test-mac.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ jobs:
4040
/tmp/pyenv/bin/python -m pip install loghub
4141
- run: python -m pip install --upgrade pip setuptools
4242
- run: pip install -e .[all,test]
43+
- name: Show test environment
44+
run: pip list
4345
- run: pytest -v test/
4446
# Enable this if SSH debugging is required
4547
# - name: Setup tmate session

.github/workflows/test-win.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,6 @@ jobs:
3535
architecture: 'x64'
3636
- run: python -m pip install --upgrade pip setuptools
3737
- run: pip install -e .[all,test]
38+
- name: Show test environment
39+
run: pip list
3840
- run: pytest -v test/

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,22 +46,22 @@ def get_version(module='pylsp'):
4646
python_requires='>=3.6',
4747
extras_require={
4848
'all': [
49-
'autopep8',
50-
'flake8>=3.8.0,<4.0.0',
49+
'autopep8>=1.6.0,<1.7.0',
50+
'flake8>=4.0.0,<4.1.0',
5151
'mccabe>=0.6.0,<0.7.0',
52-
'pycodestyle>=2.7.0',
52+
'pycodestyle>=2.8.0,<2.9.0',
5353
'pydocstyle>=2.0.0',
54-
'pyflakes>=2.3.0,<2.4.0',
54+
'pyflakes>=2.4.0,<2.5.0',
5555
'pylint>=2.5.0',
5656
'rope>=0.10.5',
5757
'yapf',
5858
],
59-
'autopep8': ['autopep8'],
60-
'flake8': ['flake8>=3.8.0,<4.0.0'],
59+
'autopep8': ['autopep8>=1.6.0,<1.7.0'],
60+
'flake8': ['flake8>=4.0.0,<4.1.0'],
6161
'mccabe': ['mccabe>=0.6.0,<0.7.0'],
62-
'pycodestyle': ['pycodestyle>=2.7.0'],
62+
'pycodestyle': ['pycodestyle>=2.8.0,<2.9.0'],
6363
'pydocstyle': ['pydocstyle>=2.0.0'],
64-
'pyflakes': ['pyflakes>=2.3.0,<2.4.0'],
64+
'pyflakes': ['pyflakes>=2.4.0,<2.5.0'],
6565
'pylint': ['pylint>=2.5.0'],
6666
'rope': ['rope>0.10.5'],
6767
'yapf': ['yapf'],

0 commit comments

Comments
 (0)