Skip to content

Commit aee7840

Browse files
Merge pull request #1 from hcho3/add_xgboost
Add XGBoost
2 parents 9f56910 + 48fe032 commit aee7840

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

index.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,16 @@ packages = [
7272
"cupy"
7373
]
7474

75+
[[index]]
76+
name = "xgboost"
77+
maintainers = [
78+
{ name = "Hyunsu Cho", email = "[email protected]" },
79+
]
80+
registry = "https://wheels-variant.xgboost-ci.com/"
81+
packages = [
82+
"xgboost"
83+
]
84+
7585
[[index]]
7686
name = "intel-provider"
7787
maintainers = [

src/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def generate_project_index(pkg_config: PkgConfig) -> None:
216216
)
217217
template = jinja_env.get_template("project_page.j2")
218218

219-
artifacts = fetch_links(safe_urljoin(pkg_config.registry, pkg_config.name))
219+
artifacts = fetch_links(safe_urljoin(pkg_config.registry, pkg_config.name + "/"))
220220

221221
variants_json_files = sorted(
222222
[artifact for artifact in artifacts if isinstance(artifact, VariantJson)],

0 commit comments

Comments
 (0)