From d0d19e501274912772bb1a890818a5a7f4088795 Mon Sep 17 00:00:00 2001 From: DmitriyMusatkin Date: Fri, 29 Nov 2024 15:10:18 -0800 Subject: [PATCH] lets not pick specific python ver --- builder/core/data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builder/core/data.py b/builder/core/data.py index 46b570e51..5cc462842 100644 --- a/builder/core/data.py +++ b/builder/core/data.py @@ -132,7 +132,7 @@ class PKG_TOOLS(Enum): 'pkg_update': 'apt-get -qq update -y', 'pkg_install': 'apt-get -qq install -y', 'variables': { - 'python': "python3.8", + 'python': "python3", }, }, 'debian': { @@ -178,7 +178,7 @@ class PKG_TOOLS(Enum): 'pkg_update': 'zypper refresh && zypper --non-interactive patch', 'pkg_install': 'zypper install -y', 'variables': { - 'python': "python3.9", + 'python': "python3", }, }, 'rhel': {