Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove reference to R win64 MSVC build. #10355

Merged
merged 2 commits into from
Jun 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev/release-artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ def release_note(
) -> None:
"""Generate a note for GitHub release description."""
r_gpu_linux_url = r_urls["linux"]
r_gpu_win64_url = r_urls["win64"]
src_tarball = (
f"https://github.com/dmlc/xgboost/releases/download/v{release}/{tarname}"
)
Expand All @@ -251,7 +250,6 @@ def release_note(
**Experimental binary packages for R with CUDA enabled**
* xgboost_r_gpu_linux_{release}.tar.gz: [Download]({r_gpu_linux_url})
* xgboost_r_gpu_win64_{release}.tar.gz: [Download]({r_gpu_win64_url})
**Source tarball**
* xgboost.tar.gz: [Download]({src_tarball})"""
Expand Down Expand Up @@ -297,6 +295,8 @@ def main(args: argparse.Namespace) -> None:
commit_hash = latest_hash()

outdir = os.path.abspath(args.outdir)
if outdir.find(str(ROOT)) != -1:
raise ValueError("output dir must be outside of the source tree.")
if not os.path.exists(outdir):
os.mkdir(outdir)

Expand Down