Skip to content

Commit d96f88b

Browse files
authored
Merge pull request #239 from leofang/back_to_beta
Update docs to reflect recent releases
2 parents 92aa731 + e422fdb commit d96f88b

File tree

9 files changed

+39
-12
lines changed

9 files changed

+39
-12
lines changed

cuda_bindings/docs/build_docs.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@
33
set -ex
44

55
# SPHINX_CUDA_BINDINGS_VER is used to create a subdir under build/html
6-
# (the Makefile file for sphinx-build also honors it if defined)
6+
# (the Makefile file for sphinx-build also honors it if defined).
7+
# If there's a post release (ex: .post1) we don't want it to show up in the
8+
# version selector or directory structure.
79
if [[ -z "${SPHINX_CUDA_BINDINGS_VER}" ]]; then
8-
export SPHINX_CUDA_BINDINGS_VER=$(python -c "from importlib.metadata import version; print(version('cuda-python'))" \
10+
export SPHINX_CUDA_BINDINGS_VER=$(python -c "from importlib.metadata import version; \
11+
ver = '.'.join(str(version('cuda-python')).split('.')[:3]); \
12+
print(ver)" \
913
| awk -F'+' '{print $1}')
1014
fi
1115

cuda_bindings/docs/source/release/11.8.5-notes.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# CUDA Python 11.8.5 Release notes
22

3-
Released on November 5, 2024
3+
Released on November 5, 2024. Post 1 rebuild released on November 12, 2024.
44

55
## Highlights
6-
- Resolve [Issue #215](https://github.com/NVIDIA/cuda-python/issues/215): module 'cuda.ccudart' has no attribute '__pyx_capi__'
6+
- Resolve [Issue #215](https://github.com/NVIDIA/cuda-python/issues/215): module `cuda.ccudart` has no attribute `__pyx_capi__`
7+
- Resolve [Issue #226](https://github.com/NVIDIA/cuda-python/issues/226): top-level Cython source files not packaged
8+
79

810
## Limitations
911

cuda_bindings/docs/source/release/12.6.2-notes.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# CUDA Python 12.6.2 Release notes
22

3-
Released on November 5, 2024
3+
Released on November 5, 2024. Post 1 rebuild released on November 12, 2024.
44

55
## Highlights
6-
- Resolve [Issue #215](https://github.com/NVIDIA/cuda-python/issues/215): module 'cuda.ccudart' has no attribute '__pyx_capi__'
6+
- Resolve [Issue #215](https://github.com/NVIDIA/cuda-python/issues/215): module `cuda.ccudart` has no attribute `__pyx_capi__`
7+
- Resolve [Issue #226](https://github.com/NVIDIA/cuda-python/issues/226): top-level Cython source files not packaged
8+
79

810
## Limitations
911

cuda_bindings/docs/versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"latest" : "latest",
3-
"12.6.1" : "12.6.1"
3+
"12.6.1" : "12.6.1",
4+
"12.6.2" : "12.6.2"
45
}

cuda_core/docs/source/release/0.1.0-notes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# `cuda.core` Release notes
22

3-
Released on Nov XX, 2024
3+
Released on Nov 8, 2024
44

55
## Hightlights
6-
- Initial EA1 (early access) release
6+
- Initial beta release
77
- Supports all platforms that CUDA is supported
88
- Supports all CUDA 11.x/12.x drivers
99
- Supports all CUDA 11.x/12.x Toolkits

cuda_python/docs/build_docs.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@
33
set -ex
44

55
# SPHINX_CUDA_PYTHON_VER is used to create a subdir under build/html
6-
# (the Makefile file for sphinx-build also honors it if defined)
6+
# (the Makefile file for sphinx-build also honors it if defined).
7+
# If there's a post release (ex: .post1) we don't want it to show up in the
8+
# version selector or directory structure.
79
if [[ -z "${SPHINX_CUDA_PYTHON_VER}" ]]; then
8-
export SPHINX_CUDA_PYTHON_VER=$(python -c "from importlib.metadata import version; print(version('cuda-python'))" \
10+
export SPHINX_CUDA_PYTHON_VER=$(python -c "from importlib.metadata import version; \
11+
ver = '.'.join(str(version('cuda-python')).split('.')[:3]); \
12+
print(ver)" \
913
| awk -F'+' '{print $1}')
1014
fi
1115

cuda_python/docs/source/release.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
maxdepth: 3
66
---
77
8+
12.6.2 <release/12.6.2-notes>
89
12.6.1 <release/12.6.1-notes>
910
```
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# CUDA Python Release notes
2+
3+
Released on November 5, 2024. Post 1 rebuild released on November 12, 2024.
4+
5+
## Included components
6+
7+
- [`cuda.bindings` 12.6.2](https://nvidia.github.io/cuda-python/cuda-bindings/12.6.2/release/12.6.2-notes.html)
8+
9+
10+
## Hightlights
11+
- Resolve [Issue #215](https://github.com/NVIDIA/cuda-python/issues/215): module `cuda.ccudart` has no attribute `__pyx_capi__`
12+
- Resolve [Issue #226](https://github.com/NVIDIA/cuda-python/issues/226): top-level Cython source files not packaged

cuda_python/docs/versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"latest" : "latest",
3-
"12.6.1" : "12.6.1"
3+
"12.6.1" : "12.6.1",
4+
"12.6.2" : "12.6.2"
45
}

0 commit comments

Comments
 (0)