Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-numpy for openSUSE:Factory 
checked in at 2023-05-13 17:17:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-numpy (Old)
 and      /work/SRC/openSUSE:Factory/.python-numpy.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-numpy"

Sat May 13 17:17:00 2023 rev:117 rq:1086645 version:1.24.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-numpy/python-numpy.changes        
2023-04-28 16:22:23.045665535 +0200
+++ /work/SRC/openSUSE:Factory/.python-numpy.new.1533/python-numpy.changes      
2023-05-13 17:17:08.734209989 +0200
@@ -1,0 +2,6 @@
+Fri May 12 04:22:36 UTC 2023 - Steve Kowalik <steven.kowa...@suse.com>
+
+- Add patch remove-deprecated-hypothesis-funcs.patch:
+  * Change to a non-deprecated function from hypothesis. 
+
+-------------------------------------------------------------------

New:
----
  remove-deprecated-hypothesis-funcs.patch

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

Other differences:
------------------
++++++ python-numpy.spec ++++++
--- /var/tmp/diff_new_pack.VyfTZa/_old  2023-05-13 17:17:09.474214246 +0200
+++ /var/tmp/diff_new_pack.VyfTZa/_new  2023-05-13 17:17:09.478214270 +0200
@@ -88,6 +88,8 @@
 Patch1:         numpy-1.9.0-remove-__declspec.patch
 # PATCH-FIX-OPENSUSE Ignore DeprecationWarnings when importing pkg_resources
 Patch2:         ignore-pkg_resources-deprecation.patch
+# PATCH-FIX-OPENSUSE Do not call a deprecated hypothesis health check function
+Patch3:         remove-deprecated-hypothesis-funcs.patch
 BuildRequires:  %{python_module Cython >= 0.29.30}
 BuildRequires:  %{python_module base >= 3.8}
 BuildRequires:  %{python_module devel}

++++++ remove-deprecated-hypothesis-funcs.patch ++++++
Index: numpy-1.24.2/numpy/conftest.py
===================================================================
--- numpy-1.24.2.orig/numpy/conftest.py
+++ numpy-1.24.2/numpy/conftest.py
@@ -30,7 +30,7 @@ hypothesis.settings.register_profile(
 hypothesis.settings.register_profile(
     name="np.test() profile",
     deadline=None, print_blob=True, database=None, derandomize=True,
-    suppress_health_check=hypothesis.HealthCheck.all(),
+    suppress_health_check=list(hypothesis.HealthCheck),
 )
 # Note that the default profile is chosen based on the presence 
 # of pytest.ini, but can be overridden by passing the 

Reply via email to