Skip to content

Commit c31ea34

Browse files
gfyoungjreback
authored andcommitted
BUG: Rename pydata to pandas-dev in merge-pr.py (pandas-dev#14447)
* BUG: Rename pydata to pandas-dev in merge-pr The project has been renamed to pandas-dev, so explicitly point to the new name instead of relying on GitHub redirection magic. Closes pandas-devgh-14439. * MAINT: merge-pr cleanup
1 parent 7cad3f1 commit c31ea34

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

scripts/merge-py.py

+3-10
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
# Remote name where results pushed
4747
PUSH_REMOTE_NAME = os.environ.get("PUSH_REMOTE_NAME", "upstream")
4848

49-
GITHUB_BASE = "https://github.com/pydata/" + PROJECT_NAME + "/pull"
50-
GITHUB_API_BASE = "https://api.github.com/repos/pydata/" + PROJECT_NAME
49+
GITHUB_BASE = "https://github.com/pandas-dev/" + PROJECT_NAME + "/pull"
50+
GITHUB_API_BASE = "https://api.github.com/repos/pandas-dev/" + PROJECT_NAME
5151

5252
# Prefix added to temporary branches
5353
BRANCH_PREFIX = "PR_TOOL"
@@ -124,7 +124,7 @@ def clean_up():
124124
run_cmd("git branch -D %s" % branch)
125125

126126

127-
# merge the requested PR and return the merge hash
127+
# Merge the requested PR and return the merge hash
128128
def merge_pr(pr_num, target_ref):
129129

130130
pr_branch_name = "%s_MERGE_PR_%s" % (BRANCH_PREFIX, pr_num)
@@ -244,13 +244,6 @@ def fix_version_from_branch(branch, versions):
244244
branch_ver = branch.replace("branch-", "")
245245
return filter(lambda x: x.name.startswith(branch_ver), versions)[-1]
246246

247-
248-
# branches = get_json("%s/branches" % GITHUB_API_BASE)
249-
# branch_names = filter(lambda x: x.startswith("branch-"),
250-
# [x['name'] for x in branches])
251-
# Assumes branch names can be sorted lexicographically
252-
# latest_branch = sorted(branch_names, reverse=True)[0]
253-
254247
pr_num = input("Which pull request would you like to merge? (e.g. 34): ")
255248
pr = get_json("%s/pulls/%s" % (GITHUB_API_BASE, pr_num))
256249

0 commit comments

Comments
 (0)