Update flake8 pre-commit versions (#2117)

This commit is contained in:
Jonas Haag 2022-11-15 16:59:29 +01:00 committed by GitHub
parent 433ba25ccf
commit 5fd5c955d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -31,16 +31,16 @@ repos:
hooks:
- id: isort
exclude: tests/data
- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.2
- repo: https://github.com/PyCQA/flake8
rev: 5.0.4
hooks:
- id: flake8
language_version: python3
additional_dependencies:
- flake8-typing-imports==1.12.0
- flake8-builtins==1.5.3
- flake8-bugbear==22.1.11
- flake8-isort==4.1.1
- flake8-typing-imports==1.14.0
- flake8-builtins==2.0.1
- flake8-bugbear==22.10.27
- flake8-isort==5.0.0
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v14.0.6
hooks:

View File

@ -181,7 +181,7 @@ def mamba_install(prefix, specs, args, env, dry_run=False, *_, **kwargs):
def mamba_dry_run(specs, args, env, *_, **kwargs):
return mamba_install(
tempfile.mkdtemp(), specs, args, env, dry_run=True, *_, **kwargs
tempfile.mkdtemp(), specs, args, env, *_, dry_run=True, **kwargs
)