mirror of https://github.com/mamba-org/mamba.git
Update flake8 pre-commit versions (#2117)
This commit is contained in:
parent
433ba25ccf
commit
5fd5c955d1
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue