remove outstanding print statements

This commit is contained in:
Florian Förster 2025-04-03 14:49:36 +02:00
parent 89b008cca8
commit 8c23374f67
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[project]
name = "pycage"
version = "0.2.3"
version = "0.2.4dev1"
description = "tool to handle standalone Python installations from the CLI"
authors = [
{name = "Florian Förster", email = "f.foerster@d-opt.com"},
@ -78,7 +78,7 @@ directory = "reports/coverage"
[tool.bumpversion]
current_version = "0.2.3"
current_version = "0.2.4dev1"
parse = """(?x)
(?P<major>0|[1-9]\\d*)\\.
(?P<minor>0|[1-9]\\d*)\\.

View File

@ -60,7 +60,7 @@ def get_metadata(
route = f"{release_tag}/{target_build}"
target_url = combine_route(asset_url, route)
print(f"Target build:\t{target_build},\nTarget URL:\t{target_url}")
click.echo(f"Target build:\t{target_build},\nTarget URL:\t{target_url}")
return RetrievalInfo(url=target_url, file=target_build)
@ -166,7 +166,7 @@ def get(
load_file_from_url(url=retrieval_info.url, file_save_path=src_file)
delete_folder_recursively(target_folder)
extract_archive(src_file, folder_extract)
print("Download and extraction successfully.")
click.echo("Download and extraction successfully.")
elif force_reextract:
click.echo("File already downloaded. Re-extract file...")
delete_folder_recursively(target_folder)