Skip to content

Commit

Permalink
Remove dask-sql from install selector (#521)
Browse files Browse the repository at this point in the history
Co-authored-by: jakirkham <[email protected]>
  • Loading branch information
charlesbluca and jakirkham authored Aug 29, 2024
1 parent 9b6e60c commit c26f163
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions _includes/selector.html
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@
packages: ["Standard", "Choose Specific Packages"],
additional_pip_packages: ["cuDF", "dask-cuDF", "cuML", "cuGraph", "cuSpatial/cuProj", "cuxfilter", "cuCIM", "RAFT", "cuVS"],
additional_rapids_packages: ["cuDF", "cuML", "cuGraph", "cuSpatial/cuProj", "cuxfilter", "cuCIM", "RAFT", "cuVS"],
additional_packages: ["Dask-SQL", "JupyterLab", "Plotly Dash", "Graphistry", "TensorFlow", "Xarray-Spatial", "PyTorch"],
additional_packages: ["JupyterLab", "Plotly Dash", "Graphistry", "TensorFlow", "Xarray-Spatial", "PyTorch"],
note_prefix: "<i class='fas fa-info-circle text-blue'></i>",
rapids_meta_pkgs: ["cuDF", "cuML", "cuGraph", "cuSpatial", "cuProj", "cuxfilter", "cuCIM", "RAFT"],
getStableVersion() {
Expand Down Expand Up @@ -456,18 +456,15 @@
};
},
getAdditionalPkgName(pkg) {
var dask_prefix = this.active_release === "Nightly" ? "dask/label/dev::" : "";
var pkg_names = {
"Plotly Dash": "dash",
"Dask-SQL": dask_prefix + "dask-sql",
"PyTorch": "'pytorch=*=*cuda*'"
}
return (pkg_names[pkg] || pkg).toLowerCase();
},
getCondaCmdHtml() {
var rapids_version = this.active_release === "Stable" ? this.getStableVersion() : this.getNightlyVersion();
var rapids_channel = this.active_release === "Stable" ? "rapidsai" : "rapidsai-nightly";
var dask_prefix = this.active_release === "Nightly" ? "dask/label/dev::" : "";
var python_version = this.active_python_ver;
var cuda_version_pinning = this.getCondaVersionSupport(this.active_conda_cuda_ver)["pinning"];
var py_cuda_pkgs = [this.highlightPkgOrImg("python") + "=" + python_version, "'" + this.highlightPkgOrImg("cuda-version") + cuda_version_pinning + "'"].join(" ");
Expand Down

0 comments on commit c26f163

Please sign in to comment.