From c2588f67ef18b9a8487bf55e9147a5d56900b9b4 Mon Sep 17 00:00:00 2001 From: Eric Park Date: Mon, 6 May 2024 17:10:54 +0900 Subject: [PATCH] fix(shippy): remove upgrade commands from error messages Because the user may have installed shippy using pipx or some other method, avoid giving a command that can be followed blindly. --- shippy/shippy/constants.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/shippy/shippy/constants.py b/shippy/shippy/constants.py index 6991ac14..74216f42 100644 --- a/shippy/shippy/constants.py +++ b/shippy/shippy/constants.py @@ -24,9 +24,6 @@ SHIPPY_COMPAT_ERROR_MSG = """\ Error: shippy is out-of-date and will not with this server instance. -Upgrade shippy with the following command: -\tpip3 install --upgrade shipper-shippy - Version information: * Reported compatible version by server: \t{} * Your current shippy version: \t\t{} @@ -36,9 +33,6 @@ Warning: shippy is out-of-date. * Current version: \t{} * New version: \t{} - -We recommend updating shippy with the following command: -\tpip3 install --upgrade shipper-shippy """ SERVER_EMPTY_TOKEN_MSG = "Server returned an empty token."