Skip to content

Commit 840a499

Browse files
committed
fix pylint deps warnings
Signed-off-by: Aleksei Stepanov <[email protected]> (cherry picked from commit b8f81ec) Signed-off-by: Aleksei Stepanov <[email protected]>
1 parent 94c75ca commit 840a499

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
install:
6969
- *upgrade_python_toolset
7070
- *install_deps
71-
- pip install --upgrade "pylint >= 2.2"
71+
- pip install --upgrade "pylint >= 2.3" isort[pyproject,requirements]
7272
script:
7373
- pylint threaded
7474
- <<: *static_analysis

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
python -m pip install --upgrade pip
1717
pip install -U setuptools
1818
pip install -r requirements.txt
19-
pip install -U pytest pylint pytest-sugar pytest-flake8 flake8-bugbear flake8-docstrings
19+
pip install -U pytest pytest-sugar pytest-flake8 flake8-bugbear flake8-docstrings
2020
displayName: 'Install dependencies'
2121
2222
- script: |
@@ -43,7 +43,7 @@ jobs:
4343
python -m pip install --upgrade pip
4444
pip install -U setuptools
4545
pip install -r requirements.txt
46-
pip install -U pytest pylint pytest-pylint pytest-sugar
46+
pip install -U pytest pylint pytest-pylint pytest-sugar isort[pyproject,requirements]
4747
displayName: 'Install dependencies'
4848
4949
- script: |

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ commands = pip install ./ -vvv -U
7777

7878
[testenv:pylint]
7979
deps =
80-
pylint >= 2.2
80+
pylint >= 2.3
81+
isort[pyproject,requirements]
8182
-r{toxinidir}/CI_REQUIREMENTS.txt
8283
commands = pylint threaded
8384

0 commit comments

Comments
 (0)