Accepting request 1088153 from systemsmanagement:ansible

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1088153
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ansible?expand=0&rev=96
This commit is contained in:
Dominique Leuenberger 2023-05-22 11:14:21 +00:00 committed by Git OBS Bridge
commit 01b5d2054a
2 changed files with 21 additions and 1 deletions

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Sun May 14 19:10:10 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>
- modify %if-condition to allow building for python3.10 or
python3.11 on SLES15
-------------------------------------------------------------------
Fri May 5 07:12:35 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>
- change python version on Leap15/SLES15 to python3.11 to use the
new stack supported by SUSE
-------------------------------------------------------------------
Wed Apr 26 12:00:09 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>

View File

@ -15,12 +15,20 @@
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
%if 0%{?suse_version} < 1550
# Leap15, SLES15
%define pythons python310
%if %pythons == "python310"
%define ansible_python python310
%define ansible_python_executable python3.10
%define ansible_python_sitelib %python310_sitelib
%endif
%if %pythons == "python311"
%define ansible_python python311
%define ansible_python_executable python3.11
%define ansible_python_sitelib %python311_sitelib
%endif
%else
# Tumbleweed
%define pythons python3