Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-scikit-sparse for 
openSUSE:Factory checked in at 2024-02-20 21:13:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-scikit-sparse (Old)
 and      /work/SRC/openSUSE:Factory/.python-scikit-sparse.new.1706 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-scikit-sparse"

Tue Feb 20 21:13:54 2024 rev:7 rq:1147597 version:0.4.12

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-scikit-sparse/python-scikit-sparse.changes    
    2023-09-10 13:10:33.715265391 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-scikit-sparse.new.1706/python-scikit-sparse.changes
      2024-02-20 21:13:57.740996327 +0100
@@ -1,0 +2,5 @@
+Sun Feb 18 15:19:40 UTC 2024 - Ben Greiner <[email protected]>
+
+- Add scikit-sparse-py312.patch gh#scikit-sparse/scikit-sparse#105
+
+-------------------------------------------------------------------

New:
----
  scikit-sparse-py312.patch

BETA DEBUG BEGIN:
  New:
- Add scikit-sparse-py312.patch gh#scikit-sparse/scikit-sparse#105
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-scikit-sparse.spec ++++++
--- /var/tmp/diff_new_pack.Is3gcX/_old  2024-02-20 21:13:58.321017374 +0100
+++ /var/tmp/diff_new_pack.Is3gcX/_new  2024-02-20 21:13:58.325017520 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-scikit-sparse
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,8 +26,10 @@
 Group:          Development/Languages/Python
 URL:            https://github.com/scikit-sparse/scikit-sparse/
 Source:         
https://files.pythonhosted.org/packages/source/s/scikit-sparse/scikit-sparse-%{version}.tar.gz
-#PATCH-FIX-UPSTREAM https://github.com/scikit-sparse/scikit-sparse/pull/102 
Fix breaking changes in isspmatrix of scipy >=1.11.0
+# PATCH-FIX-UPSTREAM https://github.com/scikit-sparse/scikit-sparse/pull/102 
Fix breaking changes in isspmatrix of scipy >=1.11.0
 Patch0:         scipy111.patch
+# PATCH-FIX-UPSTREAM scikit-sparse-py312.patch 
gh#scikit-sparse/scikit-sparse#105
+Patch1:         scikit-sparse-py312.patch
 BuildRequires:  %{python_module Cython}
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module numpy-devel >= 1.13.3}
@@ -38,7 +40,7 @@
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 BuildRequires:  suitesparse-devel
-Requires:       python-numpy >= 1.12
+Requires:       python-numpy >= 1.13.3
 Requires:       python-scipy >= 0.18
 ExcludeArch:    %{ix86}
 # SECTION test requirements

++++++ scikit-sparse-py312.patch ++++++
>From 60e672ee846e081658e4d74525ab5584358fefdb Mon Sep 17 00:00:00 2001
From: Christian Glusa <[email protected]>
Date: Sun, 26 Nov 2023 17:55:43 -0700
Subject: [PATCH] remove numpy build restrictions, add Python 3.12 build to
 github action

---
 .github/workflows/ci_test.yml | 2 +-
 pyproject.toml                | 7 +------
 setup.py                      | 2 +-
 3 files changed, 3 insertions(+), 8 deletions(-)

diff --git a/pyproject.toml b/pyproject.toml
index 682d8bc..bf7703e 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -25,11 +25,6 @@ requires = [
     "setuptools>=40.8.0",
     "wheel",
     "Cython>=0.22",
-    'numpy==1.13.3; python_version=="3.6"',
-    'numpy==1.14.5; python_version=="3.7"',
-    'numpy==1.17.3; python_version=="3.8"',
-    'numpy==1.19.3; python_version=="3.9"',
-    'numpy==1.23.1; python_version=="3.10"',
-    'numpy==1.23.5; python_version=="3.11"',
+    'numpy>=1.13.3; python_version>="3.6"',
 ]
 build-backend = "setuptools.build_meta"
\ No newline at end of file
diff --git a/setup.py b/setup.py
index f7e7af1..e7ec38b 100644
--- a/setup.py
+++ b/setup.py
@@ -55,7 +55,7 @@
 
 setup(
     install_requires=["numpy>=1.13.3", "scipy>=0.19"],
-    python_requires=">=3.6, <3.12",
+    python_requires=">=3.6",
     packages=find_packages(),
     package_data={
         "": ["test_data/*.mtx.gz"],

Reply via email to