Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-conu for openSUSE:Factory checked in at 2026-05-27 16:18:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-conu (Old) and /work/SRC/openSUSE:Factory/.python-conu.new.1937 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-conu" Wed May 27 16:18:11 2026 rev:5 rq:1355304 version:1.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-conu/python-conu.changes 2025-05-20 09:37:54.028854764 +0200 +++ /work/SRC/openSUSE:Factory/.python-conu.new.1937/python-conu.changes 2026-05-27 16:19:02.130014877 +0200 @@ -1,0 +2,6 @@ +Tue May 26 13:11:53 UTC 2026 - Markéta Machová <[email protected]> + +- Add pickle.patch to workaround test failure on Python 3.14 + (bsc#1266046) + +------------------------------------------------------------------- New: ---- pickle.patch ----------(New B)---------- New: - Add pickle.patch to workaround test failure on Python 3.14 (bsc#1266046) ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-conu.spec ++++++ --- /var/tmp/diff_new_pack.cL8Js9/_old 2026-05-27 16:19:03.054052806 +0200 +++ /var/tmp/diff_new_pack.cL8Js9/_new 2026-05-27 16:19:03.054052806 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-conu # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -25,6 +25,8 @@ Source: https://files.pythonhosted.org/packages/source/c/conu/conu-%{version}.tar.gz # https://github.com/user-cont/conu/issues/390 Patch0: python-conu-no-six.patch +# https://github.com/user-cont/conu/issues/395 +Patch1: pickle.patch BuildRequires: %{python_module pip} BuildRequires: %{python_module setuptools} BuildRequires: %{python_module wheel} @@ -33,6 +35,7 @@ Requires: python-docker Requires: python-flexmock Requires: python-kubernetes >= 8 +Requires: python-multiprocess Requires: python-pytest Requires: python-requests Recommends: docker @@ -42,6 +45,7 @@ BuildRequires: %{python_module docker} BuildRequires: %{python_module flexmock} BuildRequires: %{python_module kubernetes >= 8} +BuildRequires: %{python_module multiprocess} BuildRequires: %{python_module pytest} BuildRequires: %{python_module requests} BuildRequires: acl ++++++ pickle.patch ++++++ Index: conu-1.0.0/conu/utils/probes.py =================================================================== --- conu-1.0.0.orig/conu/utils/probes.py +++ conu-1.0.0/conu/utils/probes.py @@ -7,7 +7,7 @@ import time import logging -from multiprocessing import Process, Queue +from multiprocess import Process, Queue from conu.exceptions import ConuException, CountExceeded, ProbeTimeout
