From 73ebb2e12baf780baf43f0a8a4cce2c58ed9a02d Mon Sep 17 00:00:00 2001 From: Casper Welzel Andersen Date: Thu, 7 Dec 2023 18:48:24 +0100 Subject: [PATCH] Hotfix - Remove unwanted print statements --- ci_cd/utils/versions.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ci_cd/utils/versions.py b/ci_cd/utils/versions.py index fce3e8c2..7f880b45 100644 --- a/ci_cd/utils/versions.py +++ b/ci_cd/utils/versions.py @@ -935,8 +935,6 @@ def update_specifier_set( # pylint: disable=too-many-statements,too-many-branch # Keep the ~= operator, but update to include the latest version as # the minimum version split_specifier_version = specifier.version.split(".") - print(f"splitted version: {split_specifier_version}") - print(f"splitted latest version: {split_latest_version}") updated_version = ".".join( split_latest_version[: len(split_specifier_version)] )