We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b649df commit c35cc13Copy full SHA for c35cc13
4 files changed
.github/workflows/test-linux.yml
@@ -40,6 +40,8 @@ jobs:
40
/tmp/pyenv/bin/python -m pip install loghub
41
- run: python -m pip install --upgrade pip setuptools
42
- run: pip install -e .[all,test]
43
+ - name: Show test environment
44
+ run: pip list
45
- run: pytest -v test/
46
# Enable this if SSH debugging is required
47
# - name: Setup tmate session
.github/workflows/test-mac.yml
.github/workflows/test-win.yml
@@ -35,4 +35,6 @@ jobs:
35
architecture: 'x64'
36
37
38
39
setup.py
@@ -46,22 +46,22 @@ def get_version(module='pylsp'):
python_requires='>=3.6',
extras_require={
48
'all': [
49
- 'autopep8',
50
- 'flake8>=3.8.0,<4.0.0',
+ 'autopep8>=1.6.0,<1.7.0',
+ 'flake8>=4.0.0,<4.1.0',
51
'mccabe>=0.6.0,<0.7.0',
52
- 'pycodestyle>=2.7.0',
+ 'pycodestyle>=2.8.0,<2.9.0',
53
'pydocstyle>=2.0.0',
54
- 'pyflakes>=2.3.0,<2.4.0',
+ 'pyflakes>=2.4.0,<2.5.0',
55
'pylint>=2.5.0',
56
'rope>=0.10.5',
57
'yapf',
58
],
59
- 'autopep8': ['autopep8'],
60
- 'flake8': ['flake8>=3.8.0,<4.0.0'],
+ 'autopep8': ['autopep8>=1.6.0,<1.7.0'],
+ 'flake8': ['flake8>=4.0.0,<4.1.0'],
61
'mccabe': ['mccabe>=0.6.0,<0.7.0'],
62
- 'pycodestyle': ['pycodestyle>=2.7.0'],
+ 'pycodestyle': ['pycodestyle>=2.8.0,<2.9.0'],
63
'pydocstyle': ['pydocstyle>=2.0.0'],
64
- 'pyflakes': ['pyflakes>=2.3.0,<2.4.0'],
+ 'pyflakes': ['pyflakes>=2.4.0,<2.5.0'],
65
'pylint': ['pylint>=2.5.0'],
66
'rope': ['rope>0.10.5'],
67
'yapf': ['yapf'],
0 commit comments