Skip to content

Commit 3b7fb21

Browse files
authored
Auto-update pre-commit hooks
1 parent 193256c commit 3b7fb21

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ default_language_version:
33
exclude: ^(.github/|tests/test_data/abinit/)
44
repos:
55
- repo: https://github.com/charliermarsh/ruff-pre-commit
6-
rev: v0.4.4
6+
rev: v0.5.0
77
hooks:
88
- id: ruff
99
args: [--fix]
@@ -30,15 +30,15 @@ repos:
3030
- id: rst-directive-colons
3131
- id: rst-inline-touching-normal
3232
- repo: https://github.com/pre-commit/mirrors-mypy
33-
rev: v1.10.0
33+
rev: v1.10.1
3434
hooks:
3535
- id: mypy
3636
files: ^src/
3737
additional_dependencies:
3838
- tokenize-rt==4.1.0
3939
- types-paramiko
4040
- repo: https://github.com/codespell-project/codespell
41-
rev: v2.2.6
41+
rev: v2.3.0
4242
hooks:
4343
- id: codespell
4444
stages: [commit, commit-msg]

src/atomate2/cli/dev.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -600,13 +600,13 @@ def save_abinit_maker(maker: Maker) -> None:
600600
author_mail = None
601601
if git:
602602
name = subprocess.run(
603-
"git config user.name".split(), # noqa: S603
603+
"git config user.name".split(),
604604
capture_output=True,
605605
encoding="utf-8",
606606
check=True,
607607
)
608608
mail = subprocess.run(
609-
"git config user.email".split(), # noqa: S603
609+
"git config user.email".split(),
610610
capture_output=True,
611611
encoding="utf-8",
612612
check=True,

0 commit comments

Comments
 (0)