From ecb6ebcc189beb5f437af835099fc3d2574c4e0e Mon Sep 17 00:00:00 2001 From: Eric Callahan Date: Sun, 19 May 2024 16:31:23 -0400 Subject: [PATCH] pip_utils: bump pip version to 24.0.0 Signed-off-by: Eric Callahan --- moonraker/components/update_manager/app_deploy.py | 2 -- moonraker/utils/pip_utils.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/moonraker/components/update_manager/app_deploy.py b/moonraker/components/update_manager/app_deploy.py index 15d264f..a689061 100644 --- a/moonraker/components/update_manager/app_deploy.py +++ b/moonraker/components/update_manager/app_deploy.py @@ -35,8 +35,6 @@ if TYPE_CHECKING: from ..machine import Machine from ..file_manager.file_manager import FileManager -MIN_PIP_VERSION = (23, 3, 2) - SUPPORTED_CHANNELS = { AppType.WEB: [Channel.STABLE, Channel.BETA], AppType.ZIP: [Channel.STABLE, Channel.BETA], diff --git a/moonraker/utils/pip_utils.py b/moonraker/utils/pip_utils.py index f220f77..6224431 100644 --- a/moonraker/utils/pip_utils.py +++ b/moonraker/utils/pip_utils.py @@ -31,7 +31,7 @@ if TYPE_CHECKING: from ..server import Server from ..components.shell_command import ShellCommandFactory -MIN_PIP_VERSION = (23, 3, 2) +MIN_PIP_VERSION = (24, 0) MIN_PYTHON_VERSION = (3, 7) # Synchronous Subprocess Helpers