Skip to content

Commit

Permalink
add new C++ wheels: libcuvs, libcugraph, libcuml (#40)
Browse files Browse the repository at this point in the history
Proposes updating the metadata here to account for new wheels added in
the 25.02 release cycle.

This shouldn't be merged until all of these are:

* [x] `libcugraph` (rapidsai/cugraph#4804)
* [x] `libcuml`  (rapidsai/cuml#6199 )
* [x] `libcuvs` (rapidsai/cuvs#594)
  • Loading branch information
jameslamb authored Jan 24, 2025
1 parent cd3f153 commit cc36730
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
12 changes: 6 additions & 6 deletions rapids-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -1375,7 +1375,7 @@
"libcugraph": {
"has_conda_package": true,
"has_cuda_suffix": true,
"has_wheel_package": false,
"has_wheel_package": true,
"publishes_prereleases": true
},
"libcugraph_etl": {
Expand Down Expand Up @@ -1440,7 +1440,7 @@
"libcuml": {
"has_conda_package": true,
"has_cuda_suffix": true,
"has_wheel_package": false,
"has_wheel_package": true,
"publishes_prereleases": true
},
"libcuml-tests": {
Expand Down Expand Up @@ -1516,7 +1516,7 @@
"libcuvs": {
"has_conda_package": true,
"has_cuda_suffix": true,
"has_wheel_package": false,
"has_wheel_package": true,
"publishes_prereleases": true
},
"libcuvs-static": {
Expand Down Expand Up @@ -1796,7 +1796,7 @@
"libcugraph": {
"has_conda_package": true,
"has_cuda_suffix": true,
"has_wheel_package": false,
"has_wheel_package": true,
"publishes_prereleases": true
},
"libcugraph_etl": {
Expand Down Expand Up @@ -1861,7 +1861,7 @@
"libcuml": {
"has_conda_package": true,
"has_cuda_suffix": true,
"has_wheel_package": false,
"has_wheel_package": true,
"publishes_prereleases": true
},
"libcuml-tests": {
Expand Down Expand Up @@ -1937,7 +1937,7 @@
"libcuvs": {
"has_conda_package": true,
"has_cuda_suffix": true,
"has_wheel_package": false,
"has_wheel_package": true,
"publishes_prereleases": true
},
"libcuvs-static": {
Expand Down
9 changes: 9 additions & 0 deletions src/rapids_metadata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,15 @@
packages=dict()
)
del all_metadata.versions["25.02"].repositories["cugraph-ops"]
all_metadata.versions["25.02"].repositories["cugraph"].packages["libcugraph"] = (
RAPIDSPackage(has_wheel_package=True)
)
all_metadata.versions["25.02"].repositories["cuml"].packages["libcuml"] = RAPIDSPackage(
has_wheel_package=True
)
all_metadata.versions["25.02"].repositories["cuvs"].packages["libcuvs"] = RAPIDSPackage(
has_wheel_package=True
)
all_metadata.versions["25.02"].repositories["raft"].packages["libraft"] = RAPIDSPackage(
has_wheel_package=True
)
Expand Down

0 comments on commit cc36730

Please sign in to comment.