From 892ecea9c23913c44563f7847402d720962ab68d Mon Sep 17 00:00:00 2001 From: Manfred Riem Date: Wed, 17 Jun 2026 13:58:41 -0500 Subject: [PATCH] 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> --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c2022fda1..6932d95e6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 \`\`\`