Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-sunpy for openSUSE:Factory checked in at 2022-12-24 19:40:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-sunpy (Old) and /work/SRC/openSUSE:Factory/.python-sunpy.new.1563 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sunpy" Sat Dec 24 19:40:45 2022 rev:19 rq:1045229 version:4.1.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-sunpy/python-sunpy.changes 2022-11-23 09:48:13.975081058 +0100 +++ /work/SRC/openSUSE:Factory/.python-sunpy.new.1563/python-sunpy.changes 2022-12-24 19:40:45.904996316 +0100 @@ -1,0 +2,6 @@ +Sat Dec 24 10:50:52 UTC 2022 - Ben Greiner <c...@bnavigator.de> + +- Add sunpy-pr6662-np1.24.patch gh#sunpy/sunpy#6662 + * Ignore deprecation message from numpy 1.24 + +------------------------------------------------------------------- New: ---- sunpy-pr6662-np1.24.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-sunpy.spec ++++++ --- /var/tmp/diff_new_pack.BDywiB/_old 2022-12-24 19:40:46.685000866 +0100 +++ /var/tmp/diff_new_pack.BDywiB/_new 2022-12-24 19:40:46.689000889 +0100 @@ -26,6 +26,8 @@ Source100: python-sunpy-rpmlintrc # PATCH-FIX-OPENSUSE use custom hypothesis profile for slow OBS executions Patch1: sunpy-obs-profile.patch +# PATCH-FIX-UPSTREAM sunpy-pr6662-np1.24.patch gh#sunpy/sunpy#6662 +Patch2: sunpy-pr6662-np1.24.patch BuildRequires: %{python_module aioftp} BuildRequires: %{python_module astropy >= 4.2.1} BuildRequires: %{python_module base => 3.8} ++++++ sunpy-pr6662-np1.24.patch ++++++ >From 13f7016d219546c0d3367b5fa2bfa28f774b2761 Mon Sep 17 00:00:00 2001 From: "Albert Y. Shih" <ays...@gmail.com> Date: Mon, 19 Dec 2022 11:18:35 -0500 Subject: [PATCH 1/4] Ignore a deprecation warning in NumPy 1.24 that is triggered by scikit-image Index: sunpy-4.1.0/setup.cfg =================================================================== --- sunpy-4.1.0.orig/setup.cfg +++ sunpy-4.1.0/setup.cfg @@ -163,6 +163,8 @@ filterwarnings = ignore:unable to download valid IERS file, using local IERS-B ignore:.*will attempt to set the values inplace instead of always setting a new array:FutureWarning ignore:'cgi' is deprecated and slated for removal in Python 3.13:DeprecationWarning:zeep.utils + # Deprecation warning added in NumPy 1.24, triggered by scikit-image + ignore:.*np.bool8.*is a deprecated alias.*:DeprecationWarning [pycodestyle] max_line_length = 110