File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ default_language_version:
3
3
exclude : ^(.github/|tests/test_data/abinit/)
4
4
repos :
5
5
- repo : https://github.com/charliermarsh/ruff-pre-commit
6
- rev : v0.4.4
6
+ rev : v0.5.0
7
7
hooks :
8
8
- id : ruff
9
9
args : [--fix]
@@ -30,15 +30,15 @@ repos:
30
30
- id : rst-directive-colons
31
31
- id : rst-inline-touching-normal
32
32
- repo : https://github.com/pre-commit/mirrors-mypy
33
- rev : v1.10.0
33
+ rev : v1.10.1
34
34
hooks :
35
35
- id : mypy
36
36
files : ^src/
37
37
additional_dependencies :
38
38
- tokenize-rt==4.1.0
39
39
- types-paramiko
40
40
- repo : https://github.com/codespell-project/codespell
41
- rev : v2.2.6
41
+ rev : v2.3.0
42
42
hooks :
43
43
- id : codespell
44
44
stages : [commit, commit-msg]
Original file line number Diff line number Diff line change @@ -600,13 +600,13 @@ def save_abinit_maker(maker: Maker) -> None:
600
600
author_mail = None
601
601
if git :
602
602
name = subprocess .run (
603
- "git config user.name" .split (), # noqa: S603
603
+ "git config user.name" .split (),
604
604
capture_output = True ,
605
605
encoding = "utf-8" ,
606
606
check = True ,
607
607
)
608
608
mail = subprocess .run (
609
- "git config user.email" .split (), # noqa: S603
609
+ "git config user.email" .split (),
610
610
capture_output = True ,
611
611
encoding = "utf-8" ,
612
612
check = True ,
You can’t perform that action at this time.
0 commit comments