fix: quote version specifier in release notes install command

uv tool install accepts PEP 508 specifiers when quoted. Add quotes
around 'specify-cli==VERSION' so users can copy-paste directly.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Manfred Riem
2026-06-17 13:58:41 -05:00
parent 1b9e9bbd9c
commit 892ecea9c2
+1 -1
View File
@@ -68,7 +68,7 @@ jobs:
From [PyPI](https://pypi.org/project/specify-cli/):
\`\`\`bash
uv tool install specify-cli==${VERSION_NO_V}
uv tool install 'specify-cli==${VERSION_NO_V}'
specify init my-project
\`\`\`