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-06-28 15:22:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-sunpy (Old) and /work/SRC/openSUSE:Factory/.python-sunpy.new.1548 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sunpy" Tue Jun 28 15:22:53 2022 rev:16 rq:985510 version:4.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-sunpy/python-sunpy.changes 2022-06-10 15:58:01.716856534 +0200 +++ /work/SRC/openSUSE:Factory/.python-sunpy.new.1548/python-sunpy.changes 2022-06-28 15:23:13.222018343 +0200 @@ -1,0 +2,62 @@ +Mon Jun 27 12:26:19 UTC 2022 - Ben Greiner <c...@bnavigator.de> + +- Update to v4.0.2 + * Added a SDO/AIA 1600 file of the Venus transit to the sunpy + sample data. (#6242) + * Expose GOES quality flags in order to allow filtering corrupt + values when using the + ~sunpy.timeseries.sources.goes.XRSTimeSeries. (#6260) + * The sunpy.net.dataretriever.sources.noaa.SRSClient was not + correctly setting the passive mode for FTP connection resulting + in a permission error. This has been fixed. (#6256) + * Changed the default scaling for ~sunpy.map.sources.EUIMap from + a linear stretch to a asinh stretch. To revert to the previous + linear stretch do the following: from astropy.visualization + import ImageNormalize, LinearStretch + euimap.plot_settings["norm"] = + ImageNormalize(stretch=LinearStretch()) + * Add support for upcoming parfive 2.0 release. (#6243) + * The primary sample-data URL will be changing from + https://github.com/sunpy/sample-data/raw/master/sunpy/v1/ to + https://github.com/sunpy/data/raw/main/sunpy/v1/. We expect + GitHub to redirect from the old URL for sometime but will + eventually expire it. The data.sunpy.org mirror will continue + to be available. (#6289) + * Add support for downloading sample data from more than two + mirror locations. (#6295) +- Relese 4.0.1 + * Updated the sample data file, AIA_171_ROLL_IMAGE to be rice + compressed instead of gzip compressed. This means that the data + is now stored in the second HDU. (#6221) + * Three new maps have been added to the sample data from STEREO A + and STEREO B at 195 Angstrom, and AIA at 193 Angstrom. These + images are from a time when the three spacecraft were equally + spaced around the Sun, and therefore form near complete + instantaneous coverage of the solar surface. + * Users upgrading to this version will find this three files + download when they use the sample data for the first time. + (#6197) + * Fix a bug that prevented EUI maps with missing wavelength + metadata loading. (#6199) + * Improved annotations in the SRS active regions plotting + example. (#6196) + * Updated gallery examples that use STEREO data to use sample + data instead of searching for and downloading data via Fido. + (#6197) + * Updated the info_url for the + ~sunpy.net.dataretriever.sources.goes.XRSClient to account for + the different default sources that vary based on GOES satellite + number. (#6152) + * Added automatic conversion of unit strings in CDF files to + astropy unit objects for the following instruments: PSP/ISOIS, + SOHO/CELIAS, SOHO/COSTEP-EPHIN, and SOHO/ERNE. (#6159) + * Add an environment variable SUNPY_NO_BUILD_ANA_EXTENSION which + when present will cause sunpy to not compile the ANA C + extension when building from source. (#6166) + * sunpy now uses the Limited Python API. Therefore, one binary + distribution (wheel) per platform is now published and it is + compatible with all Python versions sunpy supports. (#6171) +- Replace sunpy-test-ignore-warnings.patch by + sunpy-obs-profile.patch and sunpy-scikit-image-deprecation.patch + +------------------------------------------------------------------- Old: ---- sunpy-4.0.0.tar.gz sunpy-test-ignore-warnings.patch New: ---- sunpy-4.0.2.tar.gz sunpy-obs-profile.patch sunpy-scikit-image-deprecation.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-sunpy.spec ++++++ --- /var/tmp/diff_new_pack.igELva/_old 2022-06-28 15:23:13.870019311 +0200 +++ /var/tmp/diff_new_pack.igELva/_new 2022-06-28 15:23:13.874019316 +0200 @@ -17,15 +17,17 @@ Name: python-sunpy -Version: 4.0.0 +Version: 4.0.2 Release: 0 Summary: SunPy: Python for Solar Physics License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND MIT URL: https://github.com/sunpy/sunpy Source0: https://files.pythonhosted.org/packages/source/s/sunpy/sunpy-%{version}.tar.gz Source100: python-sunpy-rpmlintrc -# PATCH-FIX-OPENSSUSE sunpy-test-ignore-warnings.patch -- g#sunpy/sunpy#6030 -Patch1: sunpy-test-ignore-warnings.patch +# PATCH-FIX-OPENSUSE use custom hypothesis profile for slow OBS executions +Patch1: sunpy-obs-profile.patch +# PATCH-FIX-UPSTREAM sunpy-scikit-image-deprecation.patch -- required until scikit-image in the distribution is updated gh#sunpy/sunpy#5866 +Patch2: sunpy-scikit-image-deprecation.patch BuildRequires: %{python_module aioftp} BuildRequires: %{python_module astropy >= 4.2.1} BuildRequires: %{python_module base => 3.8} ++++++ sunpy-4.0.0.tar.gz -> sunpy-4.0.2.tar.gz ++++++ /work/SRC/openSUSE:Factory/python-sunpy/sunpy-4.0.0.tar.gz /work/SRC/openSUSE:Factory/.python-sunpy.new.1548/sunpy-4.0.2.tar.gz differ: char 5, line 1 ++++++ sunpy-obs-profile.patch ++++++ Index: sunpy-4.0.2/sunpy/conftest.py =================================================================== --- sunpy-4.0.2.orig/sunpy/conftest.py +++ sunpy-4.0.2/sunpy/conftest.py @@ -3,6 +3,7 @@ import logging import tempfile import importlib +import hypothesis import pytest import astropy @@ -31,6 +32,14 @@ HAVE_REMOTEDATA = remotedata_spec is not # Do not collect the sample data file because this would download the sample data. collect_ignore = ["data/sample.py"] +hypothesis.settings.register_profile( + 'obs', + deadline=5000, + suppress_health_check=[hypothesis.HealthCheck.too_slow] +) +# this loads the profile after the pytest header printout, so don't be confused by the +# 'default' there. +hypothesis.settings.load_profile('obs') console_logger = logging.getLogger() console_logger.setLevel('INFO') ++++++ sunpy-scikit-image-deprecation.patch ++++++ Index: sunpy-4.0.0/setup.cfg =================================================================== --- sunpy-4.0.0.orig/setup.cfg +++ sunpy-4.0.0/setup.cfg @@ -148,6 +148,8 @@ filterwarnings = ignore:FLIP_TOP_BOTTOM is deprecated and will be removed in Pillow 10:DeprecationWarning ignore:Starting with ImageIO v3 the behavior of this function will switch:DeprecationWarning ignore:unable to download valid IERS file, using local IERS-B + ignore:Please use `gaussian_filter` from the `scipy.ndimage` namespace:DeprecationWarning + ignore:Please use `laplace` from the `scipy.ndimage` namespace:DeprecationWarning [pycodestyle] max_line_length = 110