"git@developer.sourcefind.cn:OpenDAS/megatron-lm.git" did not exist on "93bed794e94fd08c8cc76787ffc3028efa53d0e5"
Unverified Commit e2ee171a authored by Kai Chen's avatar Kai Chen Committed by GitHub
Browse files

Fix the version of isort (#385)

parent 4004a3d7
......@@ -15,11 +15,11 @@ jobs:
- name: Install linting dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 isort yapf
pip install flake8 yapf isort==4.3.21
- name: Lint with flake8
run: flake8 --max-complexity 20 .
- name: Lint with isort
run: isort -rc --check-only --diff mmcv/ tests/ examples/
run: isort --recursive --check-only --diff mmcv/ tests/ examples/
- name: Format python codes with yapf
run: yapf -r -d mmcv/ tests/ examples/
- name: Format c/cuda codes with clang-format
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment