From 4e8d0757df94536205a0759b683aa9e30e26cfc5 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 3 Jun 2025 17:34:22 -0400 Subject: [PATCH] chore: touch up release script (#2442) Signed-off-by: Henry Schreiner --- .pre-commit-config.yaml | 1 - bin/bump_version.py | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 896ae38e..18753121 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -35,7 +35,6 @@ repos: - pygithub - pytest - rich - - tomli - tomli_w - types-certifi - types-click diff --git a/bin/bump_version.py b/bin/bump_version.py index 452dfa06..af2d7ae3 100755 --- a/bin/bump_version.py +++ b/bin/bump_version.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # /// script -# dependencies = ["click", "packaging", "tomli; python_version<'3.11'"] +# dependencies = ["click", "packaging"] # /// @@ -129,8 +129,8 @@ def bump_version() -> None: contents = contents.replace(find, replace) path.write_text(contents, encoding="utf8") - print("Files updated. If you want to update the changelog as part of this") - print("commit, do that now.") + print("Files updated. If you want to update docs/changelog.md as part of") + print("this commit, do that now.") print() while input('Type "done" to continue: ').strip().lower() != "done":