Upgrade isort to v5.5.4

This commit is contained in:
Alexander Hess 2020-09-30 11:54:23 +02:00
parent db119ea776
commit a67805fcff
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
2 changed files with 4 additions and 4 deletions

View file

@ -527,11 +527,11 @@ def _install_packages(session: Session, *packages_or_pip_args: str, **kwargs) ->
# TODO (isort): Remove this fix after
# upgrading to isort ^5.3.0 in pyproject.toml.
# upgrading to isort ^5.5.4 in pyproject.toml.
@contextlib.contextmanager
def _isort_fix(session):
"""Temporarily upgrade to isort 5.3.0."""
session.install('isort==5.3.0')
"""Temporarily upgrade to isort 5.5.4."""
session.install('isort==5.5.4')
try:
yield
finally:

View file

@ -59,7 +59,7 @@ pre-commit = "^2.6.0"
# Code Formatters
autoflake = "^1.3.1"
black = "^19.10b0"
isort = "^4.3.21" # TODO (isort): not ^5.2.2 due to pylint and wemake-python-styleguide
isort = "^4.3.21" # TODO (isort): not ^5.5.4 due to wemake-python-styleguide
# (Static) Code Analyzers
flake8 = "^3.8.3"