Skip to content

Commit f217637

Browse files
committed
Update Ruff version pre-commit config
1 parent df7b957 commit f217637

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ repos:
2727
args: ["--tab-width", "2"]
2828

2929
- repo: https://github.com/astral-sh/ruff-pre-commit
30-
rev: v0.8.4
30+
rev: v0.9.7
3131
hooks:
3232
- id: ruff
3333
args: [--fix, --exit-non-zero-on-fix]

scripts/ruff_version.py

+8-6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
ROOT = Path(__file__).parent.parent
99
TEMPLATED_ROOT = ROOT / "{{cookiecutter.project_slug}}"
1010
REQUIREMENTS_LOCAL_TXT = TEMPLATED_ROOT / "requirements" / "local.txt"
11+
TEMPLATE_PRE_COMMIT_CONFIG = ROOT / ".pre-commit-config.yaml"
1112
PRE_COMMIT_CONFIG = TEMPLATED_ROOT / ".pre-commit-config.yaml"
1213
PYPROJECT_TOML = ROOT / "pyproject.toml"
1314

@@ -45,12 +46,13 @@ def update_ruff_version(old_version: str, new_version: str) -> None:
4546
f"ruff=={new_version}",
4647
)
4748
PYPROJECT_TOML.write_text(new_content)
48-
# Update pre-commit config
49-
new_content = PRE_COMMIT_CONFIG.read_text().replace(
50-
f"repo: https://github.com/astral-sh/ruff-pre-commit\n rev: v{old_version}",
51-
f"repo: https://github.com/astral-sh/ruff-pre-commit\n rev: v{new_version}",
52-
)
53-
PRE_COMMIT_CONFIG.write_text(new_content)
49+
# Update pre-commit configs
50+
for config_file in [PRE_COMMIT_CONFIG, TEMPLATE_PRE_COMMIT_CONFIG]:
51+
new_content = config_file.read_text().replace(
52+
f"repo: https://github.com/astral-sh/ruff-pre-commit\n rev: v{old_version}",
53+
f"repo: https://github.com/astral-sh/ruff-pre-commit\n rev: v{new_version}",
54+
)
55+
config_file.write_text(new_content)
5456

5557

5658
if __name__ == "__main__":

0 commit comments

Comments
 (0)