From 6e4e64cde7ca2f0640771e6b278a4ec9a4fa18f5 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Fri, 3 Jan 2025 12:03:33 -0600 Subject: [PATCH] add cugraph-docs (#35) Adds the https://github.com/rapidsai/cugraph-docs repo. `cugraph-docs` does not produce any packages... it's just used for building cuGraph docs. But it does follow RAPIDS calendar-versioning scheme and should get the usual release updates (like having `ci/release/update-version.sh` run on it), so I think it belongs here. --- rapids-metadata.json | 3 +++ src/rapids_metadata/__init__.py | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/rapids-metadata.json b/rapids-metadata.json index 6d10819..8ab425f 100644 --- a/rapids-metadata.json +++ b/rapids-metadata.json @@ -1392,6 +1392,9 @@ } } }, + "cugraph-docs": { + "packages": {} + }, "cugraph-gnn": { "packages": { "cugraph-dgl": { diff --git a/src/rapids_metadata/__init__.py b/src/rapids_metadata/__init__.py index 2ffe04b..7d470ec 100644 --- a/src/rapids_metadata/__init__.py +++ b/src/rapids_metadata/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2024, NVIDIA CORPORATION. +# Copyright (c) 2024-2025, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -217,3 +217,6 @@ ) all_metadata.versions["25.02"] = deepcopy(all_metadata.versions["24.12"]) +all_metadata.versions["25.02"].repositories["cugraph-docs"] = RAPIDSRepository( + packages=dict() +)