diff --git a/.github/scripts/bump_dependants.py b/.github/scripts/bump_dependants.py index 2d5e237d6..f3aec0d93 100644 --- a/.github/scripts/bump_dependants.py +++ b/.github/scripts/bump_dependants.py @@ -106,7 +106,7 @@ def open_pr(branch: str, title: str, body: str, base: str = "main"): def main(): args = parse_args() package = args.package - new_version = args.version + new_version = args.version.removeprefix("v") repo_root = Path(__file__).resolve().parents[2] run(["git", "config", "user.name", "github-actions[bot]"]) @@ -158,4 +158,4 @@ def main(): if __name__ == "__main__": - sys.exit(main()) \ No newline at end of file + sys.exit(main())