Upgrade isort to v5.5.4

This commit is contained in:
Alexander Hess 2020-09-30 11:54:23 +02:00
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: