Skip to content

Commit 0ccfca9

Browse files
committed
Fix pylint deps warnings
Signed-off-by: Aleksei Stepanov <penguinolog@gmail.com>
1 parent 7f7c20a commit 0ccfca9

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
@@ -59,7 +59,7 @@ jobs:
5959
install:
6060
- *upgrade_python_toolset
6161
- *install_deps
62-
- pip install --upgrade "pylint > 2.2"
62+
- pip install --upgrade "pylint > 2.3" isort[pyproject,requirements]
6363
script:
6464
- pylint advanced_descriptors
6565
- <<: *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
@@ -64,7 +64,8 @@ commands = pip install ./ -vvv -U
6464

6565
[testenv:pylint]
6666
deps =
67-
pylint>2.2
67+
pylint>2.3
68+
isort[pyproject,requirements]
6869
-r{toxinidir}/CI_REQUIREMENTS.txt
6970
commands = pylint advanced_descriptors
7071

0 commit comments

Comments
 (0)