From c46e99ec60632eb42ec30e5382ce05b2db2f11df Mon Sep 17 00:00:00 2001 From: ColorfulRhino <131405023+ColorfulRhino@users.noreply.github.com> Date: Mon, 8 Apr 2024 17:59:32 +0200 Subject: [PATCH] python-tools: Bump pip dependencies to their latest versions No new major versions --- lib/functions/general/python-tools.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/functions/general/python-tools.sh b/lib/functions/general/python-tools.sh index 4085f091e6..ae82d37e43 100644 --- a/lib/functions/general/python-tools.sh +++ b/lib/functions/general/python-tools.sh @@ -14,14 +14,14 @@ function early_prepare_pip3_dependencies_for_python_tools() { # This is like a stupid version of requirements.txt declare -a -g python3_pip_dependencies=( - "unidiff==0.7.4" # for parsing unified diff - "GitPython==3.1.30" # for manipulating git repos - "unidecode==1.3.6" # for converting strings to ascii + "unidiff==0.7.5" # for parsing unified diff + "GitPython==3.1.43" # for manipulating git repos + "unidecode==1.3.8" # for converting strings to ascii "coloredlogs==15.0.1" # for colored logging "PyYAML==6.0.1" # for parsing/writing YAML - "oras==0.1.17" # for OCI stuff in mapper-oci-update - "Jinja2==3.1.2" # for templating - "rich==13.4.1" # for rich text formatting + "oras==0.1.29" # for OCI stuff in mapper-oci-update + "Jinja2==3.1.3" # for templating + "rich==13.7.1" # for rich text formatting ) return 0 }