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 2023-02-28 12:48:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-sunpy (Old) and /work/SRC/openSUSE:Factory/.python-sunpy.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sunpy" Tue Feb 28 12:48:38 2023 rev:20 rq:1068001 version:4.1.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-sunpy/python-sunpy.changes 2022-12-24 19:40:45.904996316 +0100 +++ /work/SRC/openSUSE:Factory/.python-sunpy.new.31432/python-sunpy.changes 2023-02-28 12:48:59.764618395 +0100 @@ -1,0 +2,51 @@ +Mon Feb 27 12:48:29 UTC 2023 - Daniel Garcia <daniel.gar...@suse.com> + +- Remove patch sunpy-pr6662-np1.24.patch +- Add patch python-311.patch to support python 3.11, gh#sunpy/sunpy#6512 +- Update to v4.1.3 + * Backport PR #6740 on branch 4.1 (Exclude scipy==1.10.0 in deps) by + @meeseeksmachine in #6746 + * Backport PR #6749 on branch 4.1 (Unpin and update database for + SQLA 2.0) by @meeseeksmachine in #6750 + * Backport PR #6731 on branch 4.1 (fig-devdeps : Have to add a unit + to lon.coord_wrap) by @meeseeksmachine in #6753 + * Backport PR #6711 on branch 4.1 (Raise error if downloader for + cache fails) by @meeseeksmachine in #6755 + * Backport PR #6725 on branch 4.1 (add unit detection for XRT data) + by @meeseeksmachine in #6761 + * Backport PR #6737 on branch 4.1 (Updating the GOES-XRS baseurl + following change on noaa side) by @meeseeksmachine in #6762 + * Backport PR #6710 on branch 4.1 (Fix init issue for JP2 HMI images + from helioveiwer) by @meeseeksmachine in #6765 + * Backport PR #6648 on branch 4.1 (Fix draw_quadrangle() so that it + accepts frames with data) by @meeseeksmachine in #6777 +- v4.1.2 + * Backport PR #6694 on branch 4.1 (pin sqlalchemy<2.0 and ignore + warning for now) by @meeseeksmachine in #6697 + * Backport PR #6693 on branch 4.1 (detect gzipped-FITS files by + magic-bytes) by @meeseeksmachine in #6700 + * Backport PR #6702 on branch 4.1 (fix the extremely minor issue in + Fido docs) by @meeseeksmachine in #6704 + * Backport PR #6712 on branch 4.1 (Add changelog entry for + sqlalchemy pin) by @meeseeksmachine in #6714 + * Backport PR #6728 on branch 4.1 (Fix HISTORY key in test maps + created from header files) by @meeseeksmachine in #6730 +- v4.1.1 + * Added three tutorials which replicate ~sunpy.map.CompositeMap + functionality + (sphx_glr_generated_gallery_plotting_AIA_HMI_composite.py, + sphx_glr_generated_gallery_plotting_masked_composite_plot.py, + sphx_glr_generated_gallery_plotting_three_map_composite.py). A + fourth tutorial + (sphx_glr_generated_gallery_plotting_rgb_composite.py) + demonstrates how to create an RGB image with three different maps. + (#6459) + * Fixed the incorrect calculation in + ~sunpy.map.header_helper.make_fitswcs_header of the rotation + matrix from a rotation angle when the pixels are non-square. + (#6597) + * Fixed an issue with loading old EIT fits files with sunpy.map.Map + where the date could not be parsed. (#6605) + * Added sunpy.map.PixelPair to the reference documentation. (#6620) + +------------------------------------------------------------------- Old: ---- sunpy-4.1.0.tar.gz sunpy-pr6662-np1.24.patch New: ---- python-311.patch sunpy-4.1.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-sunpy.spec ++++++ --- /var/tmp/diff_new_pack.cwdDio/_old 2023-02-28 12:49:00.524623333 +0100 +++ /var/tmp/diff_new_pack.cwdDio/_new 2023-02-28 12:49:00.536623410 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-sunpy # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: python-sunpy -Version: 4.1.0 +Version: 4.1.3 Release: 0 Summary: SunPy core package: Python for Solar Physics License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND MIT @@ -26,8 +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 +# PATCH-FIX-UPSTREAM python-311.patch gh#sunpy/sunpy#6512 +Patch2: python-311.patch BuildRequires: %{python_module aioftp} BuildRequires: %{python_module astropy >= 4.2.1} BuildRequires: %{python_module base => 3.8} ++++++ python-311.patch ++++++ Index: sunpy-4.1.3/changelog/6512.bugfix.rst =================================================================== --- /dev/null +++ sunpy-4.1.3/changelog/6512.bugfix.rst @@ -0,0 +1,4 @@ +Add support for Python 3.11. + +The deprecated `cgi.parse_header` is now available as +`sunpy.util.net.parse_header`. Index: sunpy-4.1.3/setup.cfg =================================================================== --- sunpy-4.1.3.orig/setup.cfg +++ sunpy-4.1.3/setup.cfg @@ -166,6 +166,7 @@ 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 + ignore::DeprecationWarning ignore:.*np.bool8.*is a deprecated alias.*:DeprecationWarning ignore:Deprecated API features detected.*SQLAlchemy 2 ++++++ sunpy-4.1.0.tar.gz -> sunpy-4.1.3.tar.gz ++++++ ++++ 1953 lines of diff (skipped)