Skip to content

Commit

Permalink
move cugraph-dgl, cugraph-pyg, wholegraph to cugraph-gnn repo (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb authored Nov 15, 2024
1 parent e8bbce7 commit 4f8bb33
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 16 deletions.
32 changes: 16 additions & 16 deletions rapids-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -580,18 +580,10 @@
"has_cuda_suffix": true,
"publishes_prereleases": true
},
"cugraph-dgl": {
"has_cuda_suffix": true,
"publishes_prereleases": true
},
"cugraph-equivariant": {
"has_cuda_suffix": true,
"publishes_prereleases": true
},
"cugraph-pyg": {
"has_cuda_suffix": true,
"publishes_prereleases": true
},
"cugraph-service-client": {
"has_cuda_suffix": false,
"publishes_prereleases": true
Expand All @@ -606,6 +598,22 @@
}
}
},
"cugraph-gnn": {
"packages": {
"cugraph-dgl": {
"has_cuda_suffix": true,
"publishes_prereleases": true
},
"cugraph-pyg": {
"has_cuda_suffix": true,
"publishes_prereleases": true
},
"pylibwholegraph": {
"has_cuda_suffix": true,
"publishes_prereleases": true
}
}
},
"cugraph-ops": {
"packages": {
"libcugraphops": {
Expand Down Expand Up @@ -793,14 +801,6 @@
"publishes_prereleases": true
}
}
},
"wholegraph": {
"packages": {
"pylibwholegraph": {
"has_cuda_suffix": true,
"publishes_prereleases": true
}
}
}
}
}
Expand Down
12 changes: 12 additions & 0 deletions src/rapids_metadata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,19 @@

all_metadata.versions["24.12"] = deepcopy(all_metadata.versions["24.10"])

del all_metadata.versions["24.12"].repositories["cugraph"].packages["cugraph-dgl"]
del all_metadata.versions["24.12"].repositories["cugraph"].packages["cugraph-pyg"]
del all_metadata.versions["24.12"].repositories["cugraph"].packages["nx-cugraph"]
del all_metadata.versions["24.12"].repositories["wholegraph"]

all_metadata.versions["24.12"].repositories["cugraph-gnn"] = RAPIDSRepository(
packages={
"cugraph-dgl": RAPIDSPackage(),
"cugraph-pyg": RAPIDSPackage(),
"pylibwholegraph": RAPIDSPackage(),
}
)

all_metadata.versions["24.12"].repositories["nx-cugraph"] = RAPIDSRepository(
packages={
"nx-cugraph": RAPIDSPackage(),
Expand Down

0 comments on commit 4f8bb33

Please sign in to comment.