Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-joblib for openSUSE:Factory checked in at 2025-03-20 19:24:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-joblib (Old) and /work/SRC/openSUSE:Factory/.python-joblib.new.2696 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-joblib" Thu Mar 20 19:24:34 2025 rev:27 rq:1254192 version:1.4.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-joblib/python-joblib.changes 2024-05-11 18:18:58.469356212 +0200 +++ /work/SRC/openSUSE:Factory/.python-joblib.new.2696/python-joblib.changes 2025-03-20 19:24:53.445386500 +0100 @@ -1,0 +2,5 @@ +Tue Mar 18 16:23:55 UTC 2025 - Markéta Machová <[email protected]> + +- Add numpy22.patch to fix doctests with numpy 2.2 + +------------------------------------------------------------------- New: ---- numpy22.patch BETA DEBUG BEGIN: New: - Add numpy22.patch to fix doctests with numpy 2.2 BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-joblib.spec ++++++ --- /var/tmp/diff_new_pack.KHP67q/_old 2025-03-20 19:24:53.977408488 +0100 +++ /var/tmp/diff_new_pack.KHP67q/_new 2025-03-20 19:24:53.977408488 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-joblib # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -27,6 +27,8 @@ # PATCH-FIX-OPENSUSE Also avoid a DeprecationWarning when using fork() under # multiprocessing Patch1: also-filter-new-fork-warning.patch +# PATCH-FIX-UPSTREAM https://github.com/joblib/joblib/pull/1632 DOC Make doctest compatible with numpy 2.2 +Patch2: numpy22.patch BuildRequires: %{python_module base >= 3.7} BuildRequires: %{python_module lz4} BuildRequires: %{python_module numpy} ++++++ numpy22.patch ++++++ >From 1d9b65db31bfe79c42801d795ea9ebfec1123c44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Est=C3=A8ve?= <[email protected]> Date: Mon, 9 Dec 2024 17:16:23 +0100 Subject: [PATCH] DOC Make doctest compatible with numpy 2.2 (#1632) --- joblib/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/joblib/__init__.py b/joblib/__init__.py index 54f6c8fb4..e9d4c6870 100644 --- a/joblib/__init__.py +++ b/joblib/__init__.py @@ -63,7 +63,7 @@ >>> square = mem.cache(np.square) >>> b = square(a) # doctest: +ELLIPSIS ______________________________________________________________________... - [Memory] Calling square... + [Memory] Calling ...square... square(array([[0., 0., 1.], [1., 1., 1.], [4., 2., 1.]]))
