From eaed0ea083e565b780267452d0e9068cf23a0e96 Mon Sep 17 00:00:00 2001 From: Minglong Pan <56749246+minglong51@users.noreply.github.com> Date: Wed, 19 Aug 2026 21:39:34 -0700 Subject: [PATCH] docs: upgrade pip in release verification environment --- RELEASING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASING.md b/RELEASING.md index ad091e5..f8e4c0a 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -22,7 +22,8 @@ test -z "$(git status --short)" RELEASE_ENV="$(mktemp -d)/venv" python3.12 -m venv "$RELEASE_ENV" -"$RELEASE_ENV/bin/pip" install '.[dev,anthropic]' +"$RELEASE_ENV/bin/python" -m pip install --upgrade pip +"$RELEASE_ENV/bin/python" -m pip install '.[dev,anthropic]' "$RELEASE_ENV/bin/python" -m pytest -q "$RELEASE_ENV/bin/ruff" check . "$RELEASE_ENV/bin/ruff" format --check .