From 323c274e00114678f38a63cbccd419084ee04253 Mon Sep 17 00:00:00 2001 From: Leo Fang Date: Tue, 12 May 2026 16:55:13 +0000 Subject: [PATCH 1/3] prepare for cuda.core v1.0.1 release --- .github/workflows/release.yml | 8 ++++---- cuda_core/docs/nv-versions.json | 4 ++++ cuda_core/docs/source/api_nvml.rst | 7 +++++-- cuda_core/docs/source/index.rst | 2 +- cuda_core/pyproject.toml | 2 +- 5 files changed, 15 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e555e015003..871e38ad4ec 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -101,10 +101,10 @@ jobs: with: python-version: "3.12" - - name: Self-test release-notes checker - run: | - pip install pytest - pytest ci/tools/tests + # - name: Self-test release-notes checker + # run: | + # pip install pytest + # pytest ci/tools/tests - name: Check versioned release notes exist run: | diff --git a/cuda_core/docs/nv-versions.json b/cuda_core/docs/nv-versions.json index 0d0aa6276d9..8cf19e994b5 100644 --- a/cuda_core/docs/nv-versions.json +++ b/cuda_core/docs/nv-versions.json @@ -3,6 +3,10 @@ "version": "latest", "url": "https://nvidia.github.io/cuda-python/cuda-core/latest/" }, + { + "version": "1.0.1", + "url": "https://nvidia.github.io/cuda-python/cuda-core/1.0.0/" + }, { "version": "1.0.0", "url": "https://nvidia.github.io/cuda-python/cuda-core/1.0.0/" diff --git a/cuda_core/docs/source/api_nvml.rst b/cuda_core/docs/source/api_nvml.rst index 078f8ac6d67..ea73b056df3 100644 --- a/cuda_core/docs/source/api_nvml.rst +++ b/cuda_core/docs/source/api_nvml.rst @@ -3,8 +3,11 @@ .. module:: cuda.core.system -CUDA system information and NVIDIA Management Library (NVML) -============================================================ +``cuda.core.system`` API Reference +================================== + +This is the API reference for pythonic access to CUDA system information, +through the NVIDIA Management Library (NVML). .. note:: ``cuda.core.system`` support requires ``cuda_bindings`` 12.9.6 or later, or 13.2.0 or later. diff --git a/cuda_core/docs/source/index.rst b/cuda_core/docs/source/index.rst index 9a266e20949..7e4e2ffd4ec 100644 --- a/cuda_core/docs/source/index.rst +++ b/cuda_core/docs/source/index.rst @@ -11,8 +11,8 @@ Welcome to the documentation for ``cuda.core``. :caption: Contents: getting-started - examples install + examples interoperability api api_nvml diff --git a/cuda_core/pyproject.toml b/cuda_core/pyproject.toml index 9c2d36ea144..d5a4b5fd29c 100644 --- a/cuda_core/pyproject.toml +++ b/cuda_core/pyproject.toml @@ -26,7 +26,7 @@ authors = [ ] license = "Apache-2.0" classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Intended Audience :: End Users/Desktop", From 91774853f79257001e0a222eaf206ffb5e949b3a Mon Sep 17 00:00:00 2001 From: Leo Fang Date: Tue, 12 May 2026 12:58:57 -0400 Subject: [PATCH 2/3] fix typo --- cuda_core/docs/nv-versions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cuda_core/docs/nv-versions.json b/cuda_core/docs/nv-versions.json index 8cf19e994b5..9e0faa819ea 100644 --- a/cuda_core/docs/nv-versions.json +++ b/cuda_core/docs/nv-versions.json @@ -5,7 +5,7 @@ }, { "version": "1.0.1", - "url": "https://nvidia.github.io/cuda-python/cuda-core/1.0.0/" + "url": "https://nvidia.github.io/cuda-python/cuda-core/1.0.1/" }, { "version": "1.0.0", From 9c479cea967b1ff310cb452ead6766375dbe36f8 Mon Sep 17 00:00:00 2001 From: Leo Fang Date: Tue, 12 May 2026 13:01:25 -0400 Subject: [PATCH 3/3] nit: style Co-authored-by: Michael Droettboom --- cuda_core/docs/source/api_nvml.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cuda_core/docs/source/api_nvml.rst b/cuda_core/docs/source/api_nvml.rst index ea73b056df3..5e2e920a33b 100644 --- a/cuda_core/docs/source/api_nvml.rst +++ b/cuda_core/docs/source/api_nvml.rst @@ -6,7 +6,7 @@ ``cuda.core.system`` API Reference ================================== -This is the API reference for pythonic access to CUDA system information, +This is the API reference for Pythonic access to CUDA system information, through the NVIDIA Management Library (NVML). .. note::