Fix whitespace in help release script help message
Before (scripts-dev/release.py --help): ``` Requirements: - The dev dependencies be installed, which can be done via: pip install -e .[dev] - A checkout of the sytest repository at ../sytest Then to use: ./scripts-dev/release.py prepare # ... ask others to look at the changelog ... ./scripts-dev/release.py tag # wait for assets to build, either manually or with: ./scripts- dev/release.py wait-for-actions ./scripts-dev/release.py publish ./scripts-dev/release.py upload ./scripts-dev/release.py merge-back # Optional: generate some nice links for the announcement ./scripts- dev/release.py announce ``` After: ``` Requirements: - The dev dependencies be installed, which can be done via: pip install -e .[dev] - A checkout of the sytest repository at ../sytest Then to use: ./scripts-dev/release.py prepare # ... ask others to look at the changelog ... ./scripts-dev/release.py tag # wait for assets to build, either manually or with: ./scripts-dev/release.py wait-for-actions ./scripts-dev/release.py publish ./scripts-dev/release.py upload ./scripts-dev/release.py merge-back # Optional: generate some nice links for the announcement ./scripts-dev/release.py announce ```
This commit is contained in:
parent
2f35424812
commit
7f94431409
|
@ -58,6 +58,7 @@ def cli() -> None:
|
||||||
"""An interactive script to walk through the parts of creating a release.
|
"""An interactive script to walk through the parts of creating a release.
|
||||||
|
|
||||||
Requirements:
|
Requirements:
|
||||||
|
|
||||||
- The dev dependencies be installed, which can be done via:
|
- The dev dependencies be installed, which can be done via:
|
||||||
|
|
||||||
pip install -e .[dev]
|
pip install -e .[dev]
|
||||||
|
@ -73,6 +74,7 @@ def cli() -> None:
|
||||||
./scripts-dev/release.py tag
|
./scripts-dev/release.py tag
|
||||||
|
|
||||||
# wait for assets to build, either manually or with:
|
# wait for assets to build, either manually or with:
|
||||||
|
|
||||||
./scripts-dev/release.py wait-for-actions
|
./scripts-dev/release.py wait-for-actions
|
||||||
|
|
||||||
./scripts-dev/release.py publish
|
./scripts-dev/release.py publish
|
||||||
|
@ -82,6 +84,7 @@ def cli() -> None:
|
||||||
./scripts-dev/release.py merge-back
|
./scripts-dev/release.py merge-back
|
||||||
|
|
||||||
# Optional: generate some nice links for the announcement
|
# Optional: generate some nice links for the announcement
|
||||||
|
|
||||||
./scripts-dev/release.py announce
|
./scripts-dev/release.py announce
|
||||||
|
|
||||||
Alternatively, `./scripts-dev/release.py full` will do all the above
|
Alternatively, `./scripts-dev/release.py full` will do all the above
|
||||||
|
|
Loading…
Reference in New Issue