Skip to content

[DO NOT MERGE] introduce isort and black as autoformatters #4178

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

Closed
wants to merge 15 commits into from
Closed
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,10 @@ jobs:
- image: circleci/python:3.7
steps:
- checkout
- run:
command: |
pip install --user --progress-bar off flake8 typing
flake8 --config=setup.cfg .
- run: pip install --user --progress-bar=off isort==5.* black==21.6b0 flake8
- run: isort --settings-path=setup.cfg --check-only .
- run: black --config=black.toml --check .
- run: flake8 --config=setup.cfg .

python_type_check:
docker:
Expand Down
8 changes: 4 additions & 4 deletions .circleci/config.yml.in
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,10 @@ jobs:
- image: circleci/python:3.7
steps:
- checkout
- run:
command: |
pip install --user --progress-bar off flake8 typing
flake8 --config=setup.cfg .
- run: pip install --user --progress-bar=off isort==5.* black==21.6b0 flake8
- run: isort --settings-path=setup.cfg --check-only .
- run: black --config=black.toml --check .
- run: flake8 --config=setup.cfg .

python_type_check:
docker:
Expand Down
Loading