From 47c1529f630c193053d9a5043cc456b8040a9e84 Mon Sep 17 00:00:00 2001 From: Jaya Venkatesh Date: Tue, 31 Mar 2026 12:58:38 -0700 Subject: [PATCH 1/2] change conf to PEP440 standards Signed-off-by: Jaya Venkatesh --- source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/conf.py b/source/conf.py index 3064871f..11da287e 100644 --- a/source/conf.py +++ b/source/conf.py @@ -49,7 +49,7 @@ "rapids_conda_channels": "-c rapidsai-nightly -c conda-forge", "rapids_conda_packages": f"rapids={nightly_version} python=3.13 'cuda-version>=12.0,<=12.9'", "rapids_pip_index": "https://pypi.anaconda.org/rapidsai-wheels-nightly/simple", - "rapids_pip_version": f"{nightly_version}.*,>=0.0.0a0", + "rapids_pip_version": f"~={nightly_version}.0a0", # SageMaker Notebook Instance examples need to stay pinned to an older RAPIDS until this is resolved: # https://github.com/rapidsai/deployment/issues/520 "rapids_sagemaker_conda_packages": f"rapids={nightly_version} python=3.12 cuda-version=13", From 17a434bb6fb4693a4df3f77f52d3b87f2089505f Mon Sep 17 00:00:00 2001 From: Jaya Venkatesh Date: Tue, 31 Mar 2026 13:09:23 -0700 Subject: [PATCH 2/2] update databricks init script Signed-off-by: Jaya Venkatesh --- source/conf.py | 2 +- source/platforms/databricks.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/conf.py b/source/conf.py index 11da287e..3064871f 100644 --- a/source/conf.py +++ b/source/conf.py @@ -49,7 +49,7 @@ "rapids_conda_channels": "-c rapidsai-nightly -c conda-forge", "rapids_conda_packages": f"rapids={nightly_version} python=3.13 'cuda-version>=12.0,<=12.9'", "rapids_pip_index": "https://pypi.anaconda.org/rapidsai-wheels-nightly/simple", - "rapids_pip_version": f"~={nightly_version}.0a0", + "rapids_pip_version": f"{nightly_version}.*,>=0.0.0a0", # SageMaker Notebook Instance examples need to stay pinned to an older RAPIDS until this is resolved: # https://github.com/rapidsai/deployment/issues/520 "rapids_sagemaker_conda_packages": f"rapids={nightly_version} python=3.12 cuda-version=13", diff --git a/source/platforms/databricks.md b/source/platforms/databricks.md index 9bc95b5b..2ed6321f 100644 --- a/source/platforms/databricks.md +++ b/source/platforms/databricks.md @@ -29,8 +29,8 @@ set -e # Install RAPIDS libraries pip install \ --extra-index-url={{rapids_pip_index}} \ - "cudf-cu12>={{rapids_pip_version}}" "cuml-cu12>={{rapids_pip_version}}" \ - "dask-cuda>={{rapids_pip_version}}" + "cudf-cu12=={{rapids_pip_version}}" "cuml-cu12=={{rapids_pip_version}}" \ + "dask-cuda=={{rapids_pip_version}}" ```