Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-scipy for openSUSE:Factory checked in at 2025-12-18 18:30:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-scipy (Old) and /work/SRC/openSUSE:Factory/.python-scipy.new.1928 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-scipy" Thu Dec 18 18:30:07 2025 rev:85 rq:1323309 version:1.16.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-scipy/python-scipy.changes 2025-10-09 15:00:00.438260176 +0200 +++ /work/SRC/openSUSE:Factory/.python-scipy.new.1928/python-scipy.changes 2025-12-18 18:30:11.050418614 +0100 @@ -1,0 +2,7 @@ +Tue Dec 16 15:17:11 UTC 2025 - Markéta Machová <[email protected]> + +- Update to 1.16.3 + * bug-fix release with no new features compared to 1.16.2 +- Add cython32.patch to allow build with Cython 3.2 + +------------------------------------------------------------------- Old: ---- scipy-1.16.2.tar.gz New: ---- cython32.patch scipy-1.16.3.tar.gz ----------(New B)---------- New: * bug-fix release with no new features compared to 1.16.2 - Add cython32.patch to allow build with Cython 3.2 ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-scipy.spec ++++++ --- /var/tmp/diff_new_pack.0ZBk8Q/_old 2025-12-18 18:30:15.254595186 +0100 +++ /var/tmp/diff_new_pack.0ZBk8Q/_new 2025-12-18 18:30:15.254595186 +0100 @@ -46,7 +46,7 @@ # TODO explore debundling Boost for standard Name: python-scipy%{?psuffix} -Version: 1.16.2 +Version: 1.16.3 Release: 0 Summary: Scientific Tools for Python License: BSD-3-Clause AND LGPL-2.0-or-later AND BSL-1.0 @@ -56,7 +56,9 @@ Source1: scipy-datasets.tar.gz # PATCH-FIX-UPSTREAM pytest-run-parallel-compat.patch https://github.com/scipy/scipy/pull/23305 Patch0: pytest-run-parallel-compat.patch -BuildRequires: %{python_module Cython >= 3.0.8 with %python-Cython < 3.2} +# PATCH-FIX-UPSTREAM https://github.com/scipy/scipy/pull/23940 BUG: sparse.csgraph: remove rel import to fix Cython 3.2 +Patch1: cython32.patch +BuildRequires: %{python_module Cython >= 3.0.8} BuildRequires: %{python_module devel >= 3.11} BuildRequires: %{python_module meson-python >= 0.15.0 with %python-meson-python < 0.21} BuildRequires: %{python_module pip} ++++++ cython32.patch ++++++ >From e854a4a68181114b0fc0be6d966d941e0b33db33 Mon Sep 17 00:00:00 2001 From: Nick ODell <[email protected]> Date: Wed, 5 Nov 2025 17:36:08 -0700 Subject: [PATCH] BUG: sparse.csgraph: remove rel import to fix Cython 3.2 (#23940) --- scipy/sparse/csgraph/_reordering.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scipy/sparse/csgraph/_reordering.pyx b/scipy/sparse/csgraph/_reordering.pyx index e58c6a9d2d12..e951f410c246 100644 --- a/scipy/sparse/csgraph/_reordering.pyx +++ b/scipy/sparse/csgraph/_reordering.pyx @@ -7,7 +7,7 @@ cimport numpy as np from warnings import warn from scipy.sparse import csr_array, issparse, SparseEfficiencyWarning from scipy.sparse._sputils import convert_pydata_sparse_to_scipy -from . import maximum_bipartite_matching +from scipy.sparse.csgraph import maximum_bipartite_matching np.import_array() ++++++ scipy-1.16.2.tar.gz -> scipy-1.16.3.tar.gz ++++++ /work/SRC/openSUSE:Factory/python-scipy/scipy-1.16.2.tar.gz /work/SRC/openSUSE:Factory/.python-scipy.new.1928/scipy-1.16.3.tar.gz differ: char 22, line 1 ++++++ scipy-datasets.tar.gz ++++++
