-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RFC] Version 0.90 release candidate (#4475)
* Release 0.90 * Add script to automatically generate acknowledgment * Update NEWS.md
- Loading branch information
Showing
16 changed files
with
244 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
"""Query list of all contributors and reviewers in a release""" | ||
|
||
from sh.contrib import git | ||
import sys | ||
import re | ||
import requests | ||
import json | ||
|
||
if len(sys.argv) != 5: | ||
print(f'Usage: {sys.argv[0]} [starting commit/tag] [ending commit/tag] [GitHub username] [GitHub password]') | ||
sys.exit(1) | ||
|
||
from_commit = sys.argv[1] | ||
to_commit = sys.argv[2] | ||
username = sys.argv[3] | ||
password = sys.argv[4] | ||
|
||
contributors = set() | ||
reviewers = set() | ||
|
||
for line in git.log(f'{from_commit}..{to_commit}', '--pretty=format:%s', '--reverse'): | ||
m = re.search('\(#([0-9]+)\)', line.rstrip()) | ||
if m: | ||
pr_id = m.group(1) | ||
print(f'PR #{pr_id}') | ||
|
||
r = requests.get(f'https://api.github.com/repos/dmlc/xgboost/pulls/{pr_id}/commits', auth=(username, password)) | ||
assert r.status_code == requests.codes.ok, f'Code: {r.status_code}, Text: {r.text}' | ||
commit_list = json.loads(r.text) | ||
try: | ||
contributors.update([commit['author']['login'] for commit in commit_list]) | ||
except TypeError: | ||
contributors.update(str(input(f'Error fetching contributors for PR #{pr_id}. Enter it manually, as a space-separated list:')).split(' ')) | ||
|
||
r = requests.get(f'https://api.github.com/repos/dmlc/xgboost/pulls/{pr_id}/reviews', auth=(username, password)) | ||
assert r.status_code == requests.codes.ok, f'Code: {r.status_code}, Text: {r.text}' | ||
review_list = json.loads(r.text) | ||
reviewers.update([x['user']['login'] for x in review_list]) | ||
|
||
r = requests.get(f'https://api.github.com/repos/dmlc/xgboost/issues/{pr_id}/comments', auth=(username, password)) | ||
assert r.status_code == requests.codes.ok, f'Code: {r.status_code}, Text: {r.text}' | ||
comment_list = json.loads(r.text) | ||
reviewers.update([x['user']['login'] for x in comment_list]) | ||
|
||
print('Contributors:', end='') | ||
for x in sorted(contributors): | ||
r = requests.get(f'https://api.github.com/users/{x}', auth=(username, password)) | ||
assert r.status_code == requests.codes.ok, f'Code: {r.status_code}, Text: {r.text}' | ||
user_info = json.loads(r.text) | ||
if user_info['name'] is None: | ||
print(f"@{x}, ", end='') | ||
else: | ||
print(f"{user_info['name']} (@{x}), ", end='') | ||
|
||
print('Reviewers:', end='') | ||
for x in sorted(reviewers): | ||
r = requests.get(f'https://api.github.com/users/{x}', auth=(username, password)) | ||
assert r.status_code == requests.codes.ok, f'Code: {r.status_code}, Text: {r.text}' | ||
user_info = json.loads(r.text) | ||
if user_info['name'] is None: | ||
print(f"@{x}, ", end='') | ||
else: | ||
print(f"{user_info['name']} (@{x}), ", end='') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.83.dev0 | ||
0.90 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,19 @@ | ||
#!/bin/bash | ||
|
||
if [ $# -ne 1 ]; then | ||
echo "Usage: $0 [branch name]" | ||
exit 1 | ||
fi | ||
|
||
set -e | ||
set -x | ||
|
||
branch_name=$1 | ||
|
||
rm -rf build | ||
mkdir build | ||
cd build | ||
cmake .. -DBUILD_C_DOC=ON | ||
make -j | ||
|
||
tar cvjf ${branch_name}.tar.bz2 doc_doxygen/ |