Skip to content

Commit bcf0ede

Browse files
authored
Merge pull request #291 from krassowski/krassowski-lint-ci-isort-pin-5
Pin isort to restore the lint step in CI
2 parents f173fbc + 45b4568 commit bcf0ede

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

binder/environment.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ dependencies:
1414
# for python language server (and development)
1515
- black
1616
- flake8 >=3.5
17-
- isort
17+
# isort 5.0 has breaking API changes which affect (among others) pylint and nblint;
18+
# the pin should be removed once https://github.com/PyCQA/pylint/pull/3725 is merged
19+
# see https://github.com/krassowski/jupyterlab-lsp/pull/291
20+
- isort <5
1821
- mypy
1922
- pip
2023
- pylint

requirements/lint.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ channels:
66

77
dependencies:
88
- black
9-
- isort
9+
# isort 5.0 has breaking API changes which affect (among others) pylint and nblint;
10+
# the pin should be removed once https://github.com/PyCQA/pylint/pull/3725 is merged
11+
# see https://github.com/krassowski/jupyterlab-lsp/pull/291
12+
- isort <5
1013
- mypy
1114
- robotframework-lint >=1.1
1215
- robotframework >=3.2

0 commit comments

Comments
 (0)