diff --git a/_data/docs.yml b/_data/docs.yml index 9389981281a..f05cd42e719 100644 --- a/_data/docs.yml +++ b/_data/docs.yml @@ -67,7 +67,7 @@ apis: # enable or disable links; 0 = disabled, 1 = enabled legacy: 1 stable: 1 - nightly: 1 + nightly: 0 cuproj: name: cuProj path: cuProj @@ -78,7 +78,7 @@ apis: # enable or disable links; 0 = disabled, 1 = enabled legacy: 1 stable: 1 - nightly: 1 + nightly: 0 cusignal: name: cusignal path: cusignal @@ -205,7 +205,7 @@ libs: # enable or disable links; 0 = disabled, 1 = enabled legacy: 1 stable: 1 - nightly: 1 + nightly: 0 libcuproj: name: libcuproj path: libcuproj diff --git a/_includes/selector.html b/_includes/selector.html index 76f5494c16e..76198ab95c8 100644 --- a/_includes/selector.html +++ b/_includes/selector.html @@ -317,7 +317,7 @@
@@ -572,7 +572,15 @@ if (this.active_packages.length === 1 && this.active_packages[0] === "Choose Specific Packages") { return "Select at least one package."; } else if (this.active_packages[0] === 'Standard') { - var pkgs = this.additional_pip_packages.flatMap(libraryToPkg); + var pkgs_to_show = this.additional_pip_packages; + + // Hide cuSpatial and cuProj for Nightly + if (this.active_release === "Nightly") { + pkgs_to_show = pkgs_to_show.filter(pkg => pkg !== "cuSpatial" && pkg !== "cuProj"); + } + + var pkgs = pkgs_to_show.flatMap(libraryToPkg); + var additional_pip_commands = libraryToPkg("nx-cugraph"); pkgs = pkgs.concat(additional_pip_commands); } else { @@ -644,16 +652,16 @@ }, getDockerNotes() { var notes = []; - if (this.active_docker_cuda_ver.startsWith("12") && this.active_release === "Stable") { - var pkgs_html = this.rapids_meta_pkgs.map(pkg => "" + pkg + "").join(", ");
- notes = [...notes]
- } else {
- var pkgs_html = this.rapids_meta_pkgs.map(pkg => "" + pkg + "").join(", ");
+ var pkgs_to_show = this.rapids_meta_pkgs;
+
+ // Hide cuSpatial and cuProj for Nightly
+ if (this.active_release === "Nightly") {
+ pkgs_to_show = pkgs_to_show.filter(pkg => pkg !== "cuSpatial" && pkg !== "cuProj");
}
+ var pkgs_html = pkgs_to_show.map(pkg => "" + pkg + "").join(", ");
notes = [...notes, "The selected image contains the following packages:channel_priority: strict; use channel_priority: flexible instead"];
}
+ var pkgs_to_show = this.rapids_meta_pkgs;
+
+ // Hide cuSpatial and cuProj for Nightly
+ if (this.active_release === "Nightly") {
+ pkgs_to_show = pkgs_to_show.filter(pkg => pkg !== "cuSpatial" && pkg !== "cuProj");
+ }
+
if (this.active_packages.length === 1 && this.active_packages[0] === "Standard") {
- var pkgs_html = this.rapids_meta_pkgs.map(pkg => "" + pkg + "").join(", ");
+ var pkgs_html = pkgs_to_show.map(pkg => "" + pkg + "").join(", ");
notes = [...notes, "The Standard selection contains the following packages: