File tree Expand file tree Collapse file tree 2 files changed +24
-4
lines changed
roles/sap_software_download/vars Expand file tree Collapse file tree 2 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 3
3
4
4
# Variables specific to following versions:
5
5
# - SUSE Linux Enterprise Server 15
6
- # - SUSE Linux Enterprise Server 16
7
6
8
7
# NOTE: SLES 15 SP5 introduced Python 3.11.
9
8
10
9
# Set which Python version will be used on destination node.
11
10
# This is python executable name, which can differ from python package name.
12
11
__sap_software_download_python_interpreter : >-
13
- {%- if ansible_distribution_major_version == '15' and ansible_distribution_version.split('.')[1] | int < 5 -%}
12
+ {%- if ansible_distribution_version.split('.')[1] | int < 5 -%}
14
13
python3
15
14
{%- else -%}
16
15
python3.11
17
16
{%- endif -%}
18
17
19
18
# Set which Python package will be installed on destination node.
20
19
__sap_software_download_python_package : >-
21
- {%- if ansible_distribution_major_version == '15' and ansible_distribution_version.split('.')[1] | int < 5 -%}
20
+ {%- if ansible_distribution_version.split('.')[1] | int < 5 -%}
22
21
python3
23
22
{%- else -%}
24
23
python311
@@ -27,7 +26,7 @@ __sap_software_download_python_package: >-
27
26
# The list of required Python Modules in packages
28
27
# This is required in order to avoid externally-managed-environment error.
29
28
__sap_software_download_python_module_packages : >-
30
- {%- if ansible_distribution_major_version == '15' and ansible_distribution_version.split('.')[1] | int < 5 -%}
29
+ {%- if ansible_distribution_version.split('.')[1] | int < 5 -%}
31
30
[
32
31
"python3-wheel",
33
32
"python3-urllib3",
Original file line number Diff line number Diff line change
1
+ # SPDX-License-Identifier: Apache-2.0
2
+ ---
3
+
4
+ # Variables specific to following versions:
5
+ # - SUSE Linux Enterprise Server 16
6
+
7
+ # Set which Python version will be used on destination node.
8
+ # This is python executable name, which can differ from python package name.
9
+ __sap_software_download_python_interpreter : python3.13
10
+
11
+ # Set which Python package will be installed on destination node.
12
+ __sap_software_download_python_package : python313
13
+
14
+ # The list of required Python Modules in packages
15
+ # This is required in order to avoid externally-managed-environment error.
16
+ __sap_software_download_python_module_packages :
17
+ - " python313-wheel"
18
+ - " python313-urllib3"
19
+ - " python313-requests"
20
+ - " python313-beautifulsoup4"
21
+ - " python313-lxml"
You can’t perform that action at this time.
0 commit comments