From c08a3f3cc149c3b105c6acb6509b50aa7363b7af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Zachar?= Date: Mon, 1 Jun 2026 11:44:27 +0200 Subject: [PATCH] Require sqlite-libs-3.34.1-10 and newer This version has (de)serialize API and is already in buildroots. We need to make sure python3.11 is used with it in runtime as well. --- python3.11.spec | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/python3.11.spec b/python3.11.spec index 1520161..46eda1c 100644 --- a/python3.11.spec +++ b/python3.11.spec @@ -20,7 +20,7 @@ URL: https://www.python.org/ #global prerel ... %global upstream_version %{general_version}%{?prerel} Version: %{general_version}%{?prerel:~%{prerel}} -Release: 9%{?dist} +Release: 10%{?dist} License: Python @@ -212,7 +212,7 @@ BuildRequires: openssl-devel BuildRequires: pkgconfig BuildRequires: readline-devel BuildRequires: redhat-rpm-config -BuildRequires: sqlite-devel +BuildRequires: sqlite-devel >= 3.34.1-10 BuildRequires: gdb BuildRequires: tar @@ -603,6 +603,9 @@ Recommends: (%{pkgname}-tkinter%{?_isa} = %{version}-%{release} if tk%{?_isa}) # The zoneinfo module needs tzdata Requires: tzdata +# The sqlite3 needs version with (de)serialize API +Requires: sqlite-libs >= 3.34.1-10 + %description -n %{pkgname}-libs This package contains runtime libraries for use by Python: - the majority of the Python standard library @@ -1737,6 +1740,10 @@ CheckPython optimized # ====================================================== %changelog +* Mon Jun 01 2026 Lukáš Zachar - 3.11.13-10 +- Depend on sqlite-libs with (de)serialize API +Resolves: RHEL-178519 + * Fri Apr 17 2026 Charalampos Stratakis - 3.11.13-9 - Security fixes for CVE-2026-4786, CVE-2026-6100 Resolves: RHEL-168158, RHEL-167916