Skip to content

Update requirements on flake8 and its dependencies #102

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/test-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ jobs:
/tmp/pyenv/bin/python -m pip install loghub
- run: python -m pip install --upgrade pip setuptools
- run: pip install -e .[all,test]
- name: Show test environment
run: pip list
- run: pytest -v test/
# Enable this if SSH debugging is required
# - name: Setup tmate session
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ jobs:
/tmp/pyenv/bin/python -m pip install loghub
- run: python -m pip install --upgrade pip setuptools
- run: pip install -e .[all,test]
- name: Show test environment
run: pip list
- run: pytest -v test/
# Enable this if SSH debugging is required
# - name: Setup tmate session
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,6 @@ jobs:
architecture: 'x64'
- run: python -m pip install --upgrade pip setuptools
- run: pip install -e .[all,test]
- name: Show test environment
run: pip list
- run: pytest -v test/
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,22 +46,22 @@ def get_version(module='pylsp'):
python_requires='>=3.6',
extras_require={
'all': [
'autopep8',
'flake8>=3.8.0,<4.0.0',
'autopep8>=1.6.0,<1.7.0',
'flake8>=4.0.0,<4.1.0',
'mccabe>=0.6.0,<0.7.0',
'pycodestyle>=2.7.0',
'pycodestyle>=2.8.0,<2.9.0',
'pydocstyle>=2.0.0',
'pyflakes>=2.3.0,<2.4.0',
'pyflakes>=2.4.0,<2.5.0',
'pylint>=2.5.0',
'rope>=0.10.5',
'yapf',
],
'autopep8': ['autopep8'],
'flake8': ['flake8>=3.8.0,<4.0.0'],
'autopep8': ['autopep8>=1.6.0,<1.7.0'],
'flake8': ['flake8>=4.0.0,<4.1.0'],
'mccabe': ['mccabe>=0.6.0,<0.7.0'],
'pycodestyle': ['pycodestyle>=2.7.0'],
'pycodestyle': ['pycodestyle>=2.8.0,<2.9.0'],
'pydocstyle': ['pydocstyle>=2.0.0'],
'pyflakes': ['pyflakes>=2.3.0,<2.4.0'],
'pyflakes': ['pyflakes>=2.4.0,<2.5.0'],
'pylint': ['pylint>=2.5.0'],
'rope': ['rope>0.10.5'],
'yapf': ['yapf'],
Expand Down