Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-xarray for openSUSE:Factory checked in at 2021-08-23 10:08:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-xarray (Old) and /work/SRC/openSUSE:Factory/.python-xarray.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-xarray" Mon Aug 23 10:08:07 2021 rev:29 rq:913397 version:0.19.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-xarray/python-xarray.changes 2021-07-17 23:37:23.185623892 +0200 +++ /work/SRC/openSUSE:Factory/.python-xarray.new.1899/python-xarray.changes 2021-08-23 10:09:09.100177702 +0200 @@ -1,0 +2,103 @@ +Tue Jul 27 11:01:52 UTC 2021 - Sebastian Wagner <sebix+novell....@sebix.at> + +- remove xarray-pr5449-dask-meta.patch, merged upstream. +- remove test_resample_loffset.patch, merged upstream. +- update to version 0.19.0: + - This release brings improvements to plotting of categorical data, the ability to specify how attributes: + - are combined in xarray operations, a new high-level :py:func:`unify_chunks` function, as well as various: + - deprecations, bug fixes, and minor improvements.: + - Many thanks to the 29 contributors to this release!: + - Andrew Williams, Augustus, Aureliana Barghini, Benoit Bovy, crusaderky, Deepak Cherian, ellesmith88,: + - Elliott Sales de Andrade, Giacomo Caria, github-actions[bot], Illviljan, Joeperdefloep, joooeey, Julia Kent,: + - Julius Busecke, keewis, Mathias Hauser, Matthias G??bel, Mattia Almansi, Maximilian Roos, Peter Andreas Entschev,: + - Ray Bell, Sander, Santiago Soler, Sebastian, Spencer Clark, Stephan Hoyer, Thomas Hirtz, Thomas Nicholas.: + - New Features: + - Allow passing argument ``missing_dims`` to :py:meth:`Variable.transpose` and :py:meth:`Dataset.transpose` + (:issue:`5550`, :pull:`5586`) + By `Giacomo Caria <https://github.com/gcaria>`_. + - Allow passing a dictionary as coords to a :py:class:`DataArray` (:issue:`5527`, + reverts :pull:`1539`, which had deprecated this due to python's inconsistent ordering in earlier versions). + By `Sander van Rijn <https://github.com/sjvrijn>`_. + - Added :py:meth:`Dataset.coarsen.construct`, :py:meth:`DataArray.coarsen.construct` (:issue:`5454`, :pull:`5475`). + By `Deepak Cherian <https://github.com/dcherian>`_. + - Xarray now uses consolidated metadata by default when writing and reading Zarr + stores (:issue:`5251`). + By `Stephan Hoyer <https://github.com/shoyer>`_. + - New top-level function :py:func:`unify_chunks`. + By `Mattia Almansi <https://github.com/malmans2>`_. + - Allow assigning values to a subset of a dataset using positional or label-based + indexing (:issue:`3015`, :pull:`5362`). + By `Matthias G??bel <https://github.com/matzegoebel>`_. + - Attempting to reduce a weighted object over missing dimensions now raises an error (:pull:`5362`). + By `Mattia Almansi <https://github.com/malmans2>`_. + - Add ``.sum`` to :py:meth:`~xarray.DataArray.rolling_exp` and + :py:meth:`~xarray.Dataset.rolling_exp` for exponentially weighted rolling + sums. These require numbagg 0.2.1; + (:pull:`5178`). + By `Maximilian Roos <https://github.com/max-sixty>`_. + - :py:func:`xarray.cov` and :py:func:`xarray.corr` now lazily check for missing + values if inputs are dask arrays (:issue:`4804`, :pull:`5284`). + By `Andrew Williams <https://github.com/AndrewWilliams3142>`_. + - Attempting to ``concat`` list of elements that are not all ``Dataset`` or all ``DataArray`` now raises an error (:issue:`5051`, :pull:`5425`). + By `Thomas Hirtz <https://github.com/thomashirtz>`_. + - allow passing a function to ``combine_attrs`` (:pull:`4896`). + By `Justus Magin <https://github.com/keewis>`_. + - Allow plotting categorical data (:pull:`5464`). + By `Jimmy Westling <https://github.com/illviljan>`_. + - Allow removal of the coordinate attribute ``coordinates`` on variables by setting ``.attrs['coordinates']= None`` + (:issue:`5510`). + By `Elle Smith <https://github.com/ellesmith88>`_. + - Added :py:meth:`DataArray.to_numpy`, :py:meth:`DataArray.as_numpy`, and :py:meth:`Dataset.as_numpy`. (:pull:`5568`). + By `Tom Nicholas <https://github.com/TomNicholas>`_. + - Units in plot labels are now automatically inferred from wrapped :py:meth:`pint.Quantity` arrays. (:pull:`5561`). + By `Tom Nicholas <https://github.com/TomNicholas>`_. + - Breaking changes: + - The default ``mode`` for :py:meth:`Dataset.to_zarr` when ``region`` is set + has changed to the new ``mode="r+"``, which only allows for overriding + pre-existing array values. This is a safer default than the prior ``mode="a"``, + and allows for higher performance writes (:pull:`5252`). + By `Stephan Hoyer <https://github.com/shoyer>`_. + - The main parameter to :py:func:`combine_by_coords` is renamed to `data_objects` instead + of `datasets` so anyone calling this method using a named parameter will need to update + the name accordingly (:issue:`3248`, :pull:`4696`). + By `Augustus Ijams <https://github.com/aijams>`_. + - Deprecations: + - Removed the deprecated ``dim`` kwarg to :py:func:`DataArray.integrate` (:pull:`5630`) + - Removed the deprecated ``keep_attrs`` kwarg to :py:func:`DataArray.rolling` (:pull:`5630`) + - Removed the deprecated ``keep_attrs`` kwarg to :py:func:`DataArray.coarsen` (:pull:`5630`) + - Completed deprecation of passing an ``xarray.DataArray`` to :py:func:`Variable` - will now raise a ``TypeError`` (:pull:`5630`) + - Bug fixes: + - Fix a minor incompatibility between partial datetime string indexing with a + :py:class:`CFTimeIndex` and upcoming pandas version 1.3.0 (:issue:`5356`, + :pull:`5359`). + By `Spencer Clark <https://github.com/spencerkclark>`_. + - Fix 1-level multi-index incorrectly converted to single index (:issue:`5384`, + :pull:`5385`). + By `Benoit Bovy <https://github.com/benbovy>`_. + - Don't cast a duck array in a coordinate to :py:class:`numpy.ndarray` in + :py:meth:`DataArray.differentiate` (:pull:`5408`) + By `Justus Magin <https://github.com/keewis>`_. + - Fix the ``repr`` of :py:class:`Variable` objects with ``display_expand_data=True`` + (:pull:`5406`) + By `Justus Magin <https://github.com/keewis>`_. + - Plotting a pcolormesh with ``xscale="log"`` and/or ``yscale="log"`` works as + expected after improving the way the interval breaks are generated (:issue:`5333`). + By `Santiago Soler <https://github.com/santisoler>`_ + - :py:func:`combine_by_coords` can now handle combining a list of unnamed + ``DataArray`` as input (:issue:`3248`, :pull:`4696`). + By `Augustus Ijams <https://github.com/aijams>`_. + - Internal Changes: + - Run CI on the first & last python versions supported only; currently 3.7 & 3.9. + (:pull:`5433`) + By `Maximilian Roos <https://github.com/max-sixty>`_. + - Publish test results & timings on each PR. + (:pull:`5537`) + By `Maximilian Roos <https://github.com/max-sixty>`_. + - Explicit indexes refactor: add a ``xarray.Index.query()`` method in which + one may eventually provide a custom implementation of label-based data + selection (not ready yet for public use). Also refactor the internal, + pandas-specific implementation into ``PandasIndex.query()`` and + ``PandasMultiIndex.query()`` (:pull:`5322`). + By `Benoit Bovy <https://github.com/benbovy>`_. + +------------------------------------------------------------------- Old: ---- test_resample_loffset.patch xarray-0.18.2.tar.gz xarray-pr5449-dask-meta.patch New: ---- xarray-0.19.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-xarray.spec ++++++ --- /var/tmp/diff_new_pack.Li8SRE/_old 2021-08-23 10:09:09.832176848 +0200 +++ /var/tmp/diff_new_pack.Li8SRE/_new 2021-08-23 10:09:09.836176843 +0200 @@ -21,7 +21,7 @@ # NEP 29: Numpy 1.20 dropped support for Python 3.6, python36-numpy is removed from Tumbleweed. xarray will follow on next release %define skip_python36 1 Name: python-xarray -Version: 0.18.2 +Version: 0.19.0 Release: 0 Summary: N-D labeled arrays and datasets in Python License: Apache-2.0 @@ -33,11 +33,6 @@ # PATCH-FIX-UPSTREAM scipy-interpolate.patch gh#pydata/xarray#5375 mc...@suse.com # Add missing import scipy.interpolate Patch1: scipy-interpolate.patch -# PATCH-FIX-UPSTREAM test_resample_loffset.patch gh#pydata/xarray#5364 mc...@suse.com -# use assert_allclose in test_resample_loffset test -Patch2: test_resample_loffset.patch -# PATCH-FIX-UPSTREAM xarray-pr5449-dask-meta.patch -- gh#pydata/xarray#5449 -Patch3: https://github.com/pydata/xarray/pull/5449.patch#/xarray-pr5449-dask-meta.patch BuildRequires: %{python_module numpy >= 1.15} BuildRequires: %{python_module numpy-devel >= 1.14} BuildRequires: %{python_module pandas >= 0.25} ++++++ xarray-0.18.2.tar.gz -> xarray-0.19.0.tar.gz ++++++ ++++ 10721 lines of diff (skipped)