blender/release/lts
Campbell Barton 4f1817cc18 Cleanup: declare __all__ for Python scripts
Declare all to make public public API's explicit and
help detect unused code.
2025-01-06 16:45:36 +11:00
..
create_release_notes.py Cleanup: declare __all__ for Python scripts 2025-01-06 16:45:36 +11:00
lts_download.py Cleanup: declare __all__ for Python scripts 2025-01-06 16:45:36 +11:00
lts_issue.py Cleanup: declare __all__ for Python scripts 2025-01-06 16:45:36 +11:00
README.md
requirements.txt

This folder contains a script to generate release notes and download URLs for Blender LTS releases.

Ensure required Python modules are installed before running:

pip3 install -r ./requirements.txt

Then run for example:

./create_release_notes.py --version 3.3.2 --format=html

Available arguments:

--version VERSION  Version string in the form of {major}.{minor}.{build}
                   (e.g. 3.3.2)
--issue ISSUE      Gitea issue that is contains the release notes
                   information (e.g. #77348)
--format FORMAT    Format the result in `text`, `steam`, `wiki` or `html`