File tree Expand file tree Collapse file tree 4 files changed +39
-5
lines changed
roles/sap_software_download/vars Expand file tree Collapse file tree 4 files changed +39
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,20 @@ community.sap\_launchpad Release Notes
4
4
5
5
.. contents :: Topics
6
6
7
+ v1.2.1
8
+ ======
9
+
10
+ Release Summary
11
+ ---------------
12
+
13
+ Various bug fixes
14
+
15
+ Bugfixes
16
+ --------
17
+ - software_center_download: Improved logic for skipping existing files and getting valid filename (https://github.com/sap-linuxlab/community.sap_launchpad/pull/40)
18
+ - sap_software_download: Add SLES 16 python313 support and update changelog (https://github.com/sap-linuxlab/community.sap_launchpad/pull/41)
19
+
20
+
7
21
v1.2.0
8
22
======
9
23
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ namespace: community
8
8
name : sap_launchpad
9
9
10
10
# The version of the collection. Must be compatible with semantic versioning
11
- version : 1.2.0
11
+ version : 1.2.1
12
12
13
13
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
14
14
readme : README.md
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