This is an automated email from the ASF dual-hosted git repository. wilfred-s pushed a commit to branch YUNIKORN-3451 in repository https://gitbox.apache.org/repos/asf/yunikorn-site.git
commit 17f29e4ae61defa90821202b746f618771c5fa00 Author: Wilfred Spiegelenburg <[email protected]> AuthorDate: Mon Sep 14 12:08:23 2026 +1000 [YUNIKORN-3451] replace subprocess call with run pyyaml added as a dependency for the release process --- src/pages/community/release_procedure.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/pages/community/release_procedure.md b/src/pages/community/release_procedure.md index 2d0579282a..41d0aa8d24 100644 --- a/src/pages/community/release_procedure.md +++ b/src/pages/community/release_procedure.md @@ -145,8 +145,11 @@ As an example when releasing the first release candidate for `1.8.0` the json fi } ``` -The tool has one requirement outside of standard Python 3: [GitPython](https://gitpython.readthedocs.io/en/stable/intro.html) -Make sure you have installed it by running `python3 -m pip install gitpython`. +The tool has two requirements outside of standard Python 3 installation: +1. [GitPython](https://gitpython.readthedocs.io/en/stable/) +2. [PyYAML](https://pyyaml.org/) + +Make sure you have installed it by running `python3 -m pip install gitpython` and `python3 -m pip install pyyaml`. Run the tool: ```shell script --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
