From: Daniele Varrazzo Date: Tue, 25 Feb 2025 21:09:39 +0000 (+0100) Subject: ops: don't run pre-commit on version bump X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7e11061c87376ee9a244f0b8c71cc946e8b39518;p=thirdparty%2Fpsycopg.git ops: don't run pre-commit on version bump Pre-commit is not installed in this branch. --- diff --git a/tools/bump_version.py b/tools/bump_version.py index 9b6fc27f4..e88b888da 100755 --- a/tools/bump_version.py +++ b/tools/bump_version.py @@ -145,7 +145,7 @@ class Bumper: chore: bump {self.package.name} package version to {self.want_version} """ files = self.package.ini_files + [self.package.history_file] - cmdline = ["git", "commit", "-m", msg] + list(map(str, files)) + cmdline = ["git", "commit", "-n", "-m", msg] + list(map(str, files)) sp.check_call(cmdline) def create_tag(self) -> None: