File tree Expand file tree Collapse file tree 5 files changed +43
-1
lines changed
Expand file tree Collapse file tree 5 files changed +43
-1
lines changed Original file line number Diff line number Diff line change 66 - Release Notes :
77 - releasenotes/index.md
88 - PyTorch : releasenotes/pytorch/index.md
9+ - Base : releasenotes/base/index.md
910 - Tutorials : tutorials
1011 - Reference :
1112 - reference/index.md
Original file line number Diff line number Diff line change @@ -12,3 +12,16 @@ public_registry: true
1212# Image tags (first tag is used in available_images.md)
1313tags :
1414 - " 12.8.1-gpu-py312-cu128-ubuntu24.04-ec2"
15+
16+ announcement :
17+ - " Introduced containers for Bse CUDA 12.8.1 for training which support EC2, ECS, and EKS"
18+ - " Starting with Base 12.8.1, we are removing Conda from the DLCs and installing all Python packages from PyPI"
19+ - " Added Python 3.12, Ubuntu 24.04 support"
20+
21+ packages :
22+ python : " 3.12"
23+ cuda : " 12.8.1"
24+
25+ optional :
26+ known_issues :
27+ - " Example known issue for demonstration purposes"
Original file line number Diff line number Diff line change @@ -12,3 +12,16 @@ public_registry: true
1212# Image tags (first tag is used in available_images.md)
1313tags :
1414 - " 12.9.1-gpu-py312-cu129-ubuntu22.04-ec2"
15+
16+ announcement :
17+ - " Introduced containers for Bse CUDA 12.9.0 for training which support EC2, ECS, and EKS"
18+ - " Starting with Base 12.9.0, we are removing Conda from the DLCs and installing all Python packages from PyPI"
19+ - " Added Python 3.12, Ubuntu 22.04 support"
20+
21+ packages :
22+ python : " 3.12"
23+ cuda : " 12.9.0"
24+
25+ optional :
26+ known_issues :
27+ - " Example known issue for demonstration purposes"
Original file line number Diff line number Diff line change @@ -12,3 +12,16 @@ public_registry: true
1212# Image tags (first tag is used in available_images.md)
1313tags :
1414 - " 13.0.0-gpu-py312-cu130-ubuntu22.04-ec2"
15+
16+ announcement :
17+ - " Introduced containers for Bse CUDA 13.0.0 for training which support EC2, ECS, and EKS"
18+ - " Starting with Base 13.0.0, we are removing Conda from the DLCs and installing all Python packages from PyPI"
19+ - " Added Python 3.12, Ubuntu 22.04 support"
20+
21+ packages :
22+ python : " 3.12"
23+ cuda : " 13.0.0"
24+
25+ optional :
26+ known_issues :
27+ - " Example known issue for demonstration purposes"
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ def generate_release_notes(dry_run: bool = False) -> None:
146146 return
147147
148148 for framework_group in get_framework_order ():
149- group_images = images_by_group .get (framework_group )
149+ group_images = images_by_group .get (framework_group , [] )
150150 if not group_images :
151151 continue
152152
@@ -182,6 +182,8 @@ def generate_support_policy(dry_run: bool = False) -> str:
182182
183183 for framework_group in get_framework_order ():
184184 images = images_by_group .get (framework_group , [])
185+ if not images :
186+ continue
185187
186188 # Deduplicate by version, validating date consistency
187189 version_map : dict [str , ImageConfig ] = {}
You can’t perform that action at this time.
0 commit comments