Skip to content

Commit 1a36044

Browse files
committed
And switch back to 3.x for post-release tagging
1 parent 7c2bea2 commit 1a36044

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

run_release.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1168,8 +1168,13 @@ def post_release_tagging(db: ReleaseShelf) -> None:
11681168
cwd=db["git_repo"],
11691169
)
11701170

1171+
if release_tag.is_feature_freeze_release:
1172+
checkout_branch = release_tag.basic_version
1173+
else:
1174+
checkout_branch = release_tag.branch
1175+
11711176
subprocess.check_call(
1172-
["git", "checkout", release_tag.branch],
1177+
["git", "checkout", checkout_branch],
11731178
cwd=db["git_repo"],
11741179
)
11751180

0 commit comments

Comments
 (0)