Skip to content

Commit

Permalink
Bump isort[requirements] from 4.3.21 to 5.0.7 (#187)
Browse files Browse the repository at this point in the history
* Bump isort[requirements] from 4.3.21 to 5.0.7

Bumps [isort[requirements]](https://github.com/timothycrosley/isort) from 4.3.21 to 5.0.7.
- [Release notes](https://github.com/timothycrosley/isort/releases)
- [Changelog](https://github.com/timothycrosley/isort/blob/develop/CHANGELOG.md)
- [Commits](PyCQA/isort@4.3.21...5.0.7)

Signed-off-by: dependabot[bot] <[email protected]>

* Isort fix

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Manuel Avalos <[email protected]>
  • Loading branch information
dependabot[bot] and chiqeen03 authored Jul 10, 2020
1 parent 2a3422a commit 76b5053
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SHELL := bash
PROJECT = speid
PYTHON = python3.7
DOCKER = docker-compose run --rm $(PROJECT)
isort = isort -rc -ac $(PROJECT) tests
isort = isort $(PROJECT) tests
black = black -S -l 79 --target-version py37 $(PROJECT) tests

default: install
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
black==19.10b0
flake8==3.8.3
isort[requirements]==4.3.21
isort[requirements]==5.0.7
mongomock==3.19.0
moto==1.3.14
mypy==0.782
Expand Down
6 changes: 2 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@ multiline-quotes = """
ignore = E203,W503
[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
combine_as_imports=True
profile=black
line_length=79
[mypy]
ignore_missing_imports = true

0 comments on commit 76b5053

Please sign in to comment.