Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions docs/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,15 @@ uv venv test-pypi-env
source test-pypi-env/bin/activate

# Install from TestPyPI
# Note: --extra-index-url allows installing dependencies from main PyPI
uv pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ phabfive
# --index-strategy unsafe-best-match: Required because uv's default security
# prevents mixing package versions from different indexes. Since you control
# both TestPyPI and PyPI for phabfive, this is safe and necessary.
# --extra-index-url: Allows dependencies (like mkdocs) to be installed from PyPI
uv pip install \
--index-url https://test.pypi.org/simple/ \
--extra-index-url https://pypi.org/simple/ \
--index-strategy unsafe-best-match \
phabfive

# Verify it works
phabfive --help
Expand Down