From 6a0e9468200da796c00e660a91422678f48b19cb Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Wed, 15 Apr 2026 22:51:13 +0100 Subject: [PATCH 1/2] Update welcome message and docs URL --- src/manage/commands.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/manage/commands.py b/src/manage/commands.py index 7c1995a..ba628ac 100644 --- a/src/manage/commands.py +++ b/src/manage/commands.py @@ -26,8 +26,7 @@ DEFAULT_TAG = "3" -# TODO: Remove the /dev/ for stable release -HELP_URL = "https://docs.python.org/dev/using/windows" +HELP_URL = "https://docs.python.org/using/windows" COPYRIGHT = f"""Python installation manager {__version__} @@ -41,9 +40,9 @@ WELCOME = f"""!B!Python install manager was successfully updated to {__version__}.!W! -This update adds global shortcuts for installed scripts such as !G!pip.exe!W!. -Use !G!py install --refresh!W! to update all shortcuts. -!Y!This will be needed after installing new scripts, as it is not run automatically.!W! +Indexes can now be signed to provide tamper detection. When an index signature +is found to be invalid, the operation will be aborted without modifying your system. +See !B!https://docs.python.org/using/windows#index-signatures!W! for more information. """ # The 'py help' or 'pymanager help' output is constructed by these default docs, From ee7a57a3959d99decd9a6a720e5efa09ff510f01 Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Wed, 15 Apr 2026 22:52:01 +0100 Subject: [PATCH 2/2] Use URL variable --- src/manage/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/manage/commands.py b/src/manage/commands.py index ba628ac..4d5eafd 100644 --- a/src/manage/commands.py +++ b/src/manage/commands.py @@ -42,7 +42,7 @@ Indexes can now be signed to provide tamper detection. When an index signature is found to be invalid, the operation will be aborted without modifying your system. -See !B!https://docs.python.org/using/windows#index-signatures!W! for more information. +See !B!{HELP_URL}#index-signatures!W! for more information. """ # The 'py help' or 'pymanager help' output is constructed by these default docs,