From f2ad3926435cbea365a2280d03fb7e4261f7ac23 Mon Sep 17 00:00:00 2001 From: Jaya Venkatesh Date: Mon, 23 Mar 2026 20:25:06 -0700 Subject: [PATCH 1/2] add run_notebooks key Signed-off-by: Jaya Venkatesh --- dependencies.yaml | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/dependencies.yaml b/dependencies.yaml index c9b3b0e56db..592a39944a9 100755 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -62,6 +62,15 @@ files: - depends_on_libcugraph - depends_on_libcugraph_etl - depends_on_libcugraph_tests + run_notebooks: + output: none + includes: + - cuda_version + - py_version + - run_notebooks + - depends_on_cugraph + - depends_on_pylibcugraph + - depends_on_libcugraph test_notebooks: output: none includes: @@ -483,8 +492,8 @@ dependencies: - output_types: [conda, requirements] packages: - certifi - - ipython - - notebook>=0.5.0 + - &ipython ipython + - ¬ebook notebook>=0.5.0 test_python_common: common: - output_types: [conda, pyproject, requirements] @@ -494,17 +503,28 @@ dependencies: - pytest-benchmark - pytest-cov - pytest-xdist - - scipy + - &scipy scipy test_python_cugraph: common: - output_types: [conda, pyproject, requirements] packages: - certifi - - networkx>=2.5.1 + - &networkx networkx>=2.5.1 - *numpy - packaging - python-louvain - scikit-learn>=0.23.1 + # Runtime dependencies for included cugraph notebooks, used in the + # rapidsai/notebooks Docker image. Only lists packages not already + # provided by cugraph, pylibcugraph, or libcugraph. + run_notebooks: + common: + - output_types: [conda] + packages: + - *ipython + - *networkx + - *notebook + - *scipy test_python_pylibcugraph: common: - output_types: [conda, pyproject, requirements] From 95876cef7a6f5abb424c2d144796e58963b1b545 Mon Sep 17 00:00:00 2001 From: Jaya Venkatesh Date: Tue, 24 Mar 2026 11:27:28 -0700 Subject: [PATCH 2/2] Empty commit to retrigger CI