[RFC] Version 0.90 release candidate (#4475)

* Release 0.90

* Add script to automatically generate acknowledgment

* Update NEWS.md
This commit is contained in:
Philip Hyunsu Cho
2019-05-20 01:02:44 -07:00
committed by GitHub
parent adcd8ea7c6
commit 515f5f5c47
16 changed files with 244 additions and 15 deletions

View File

@@ -33,6 +33,11 @@ try:
call('if [ -d tmp ]; then rm -rf tmp; fi; mkdir -p tmp/jvm; cd tmp/jvm; tar xvf {}'.format(filename), shell=True)
except HTTPError:
print('JVM doc not found. Skipping...')
try:
filename, _ = urllib.request.urlretrieve('https://s3-us-west-2.amazonaws.com/xgboost-docs/doxygen/{}.tar.bz2'.format(git_branch[0]))
call('mkdir -p tmp/dev; cd tmp/dev; tar xvf {}; mv doc_doxygen/html/* .; rm -rf doc_doxygen'.format(filename), shell=True)
except HTTPError:
print('C API doc not found. Skipping...')
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the