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":