Merge remote-tracking branch 'origin/lint-format-template-with-ruff' into lint-format-template-with-ruff

This commit is contained in:
Bruno Alla 2025-08-22 11:30:34 +02:00
commit 6f2897bbe4
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ def main() -> None:
return return
update_ruff_version(old_version, new_version) update_ruff_version(old_version, new_version)
subprocess.run(["uv", "lock", "--no-upgrade"], cwd=ROOT, check=False) # noqa: S603,S607 subprocess.run(["uv", "lock", "--no-upgrade"], cwd=ROOT, check=False) # noqa: S607
def get_requirements_txt_version() -> str: def get_requirements_txt_version() -> str:

View File

@ -54,7 +54,7 @@ def main() -> None:
# Run uv lock # Run uv lock
uv_lock_path = ROOT / "uv.lock" uv_lock_path = ROOT / "uv.lock"
subprocess.run(["uv", "lock", "--no-upgrade"], cwd=ROOT, check=False) # noqa: S603, S607 subprocess.run(["uv", "lock", "--no-upgrade"], cwd=ROOT, check=False) # noqa: S607
# Commit changes, create tag and push # Commit changes, create tag and push
update_git_repo([changelog_path, setup_py_path, uv_lock_path], release) update_git_repo([changelog_path, setup_py_path, uv_lock_path], release)