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 2023-12-21 23:38:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-xarray (Old)
 and      /work/SRC/openSUSE:Factory/.python-xarray.new.1840 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-xarray"

Thu Dec 21 23:38:54 2023 rev:44 rq:1134379 version:2023.12.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-xarray/python-xarray.changes      
2023-09-13 20:47:59.349403643 +0200
+++ /work/SRC/openSUSE:Factory/.python-xarray.new.1840/python-xarray.changes    
2023-12-21 23:39:02.067459674 +0100
@@ -1,0 +2,336 @@
+Wed Dec 20 20:40:53 UTC 2023 - Sebastian Wagner <se...@sebix.at>
+
+- remove obsolete patch file xarray-pr8139-pandas-fill_value.patch
+
+-------------------------------------------------------------------
+Wed Dec 13 17:02:28 UTC 2023 - Sebastian Wagner <se...@sebix.at>
+
+- update to version 2023.12.0:
+ - This release brings new `hypothesis <https://hypothesis.works/>`_ 
strategies for testing, significantly faster rolling aggregations as well as:
+``ffill`` and ``bfill`` with ``numbagg``, a new :py:meth:`Dataset.eval` 
method, and improvements to
+ - reading and writing Zarr arrays (including a new ``"a-"`` mode).:
+ - Thanks to our 16 contributors:
+ - Anderson Banihirwe, Ben Mares, Carl Andersson, Deepak Cherian, Doug 
Latornell, Gregorio L. Trevisan, Illviljan, Jens Hedegaard Nielsen, Justus 
Magin, Mathias Hauser, Max Jones, Maximilian Roos, Michael Niklas, Patrick 
Hoefler, Ryan Abernathey, Tom Nicholas:
+ - New Features:
+  - Added hypothesis strategies for generating :py:class:`xarray.Variable` 
objects containing arbitrary data, useful for parametrizing downstream tests.
+    Accessible under :py:mod:`testing.strategies`, and documented in a new 
page on testing in the User Guide.
+    (:issue:`6911`, :pull:`8404`)
+    By `Tom Nicholas <https://github.com/TomNicholas>`_.
+  - :py:meth:`rolling` uses `numbagg <https://github.com/numbagg/numbagg>`_ for
+    most of its computations by default. Numbagg is up to 5x faster than 
bottleneck
+    where parallelization is possible. Where parallelization isn't possible 
— for
+    example a 1D array — it's about the same speed as bottleneck, and 2-5x 
faster
+    than pandas' default functions. (:pull:`8493`). numbagg is an optional
+    dependency, so requires installing separately.
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+  - Use a concise format when plotting datetime arrays. (:pull:`8449`).
+    By `Jimmy Westling <https://github.com/illviljan>`_.
+  - Avoid overwriting unchanged existing coordinate variables when appending 
with :py:meth:`Dataset.to_zarr` by setting ``mode='a-'``.
+    By `Ryan Abernathey <https://github.com/rabernat>`_ and `Deepak Cherian 
<https://github.com/dcherian>`_.
+  - :py:meth:`~xarray.DataArray.rank` now operates on dask-backed arrays, 
assuming
+    the core dim has exactly one chunk. (:pull:`8475`).
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+  - Add a :py:meth:`Dataset.eval` method, similar to the pandas' method of the
+    same name. (:pull:`7163`). This is currently marked as experimental and
+    doesn't yet support the ``numexpr`` engine.
+  - :py:meth:`Dataset.drop_vars` & :py:meth:`DataArray.drop_vars` allow 
passing a
+    callable, similar to :py:meth:`Dataset.where` & :py:meth:`Dataset.sortby` 
& others.
+    (:pull:`8511`).
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+ - Breaking changes:
+  - Explicitly warn when creating xarray objects with repeated dimension names.
+    Such objects will also now raise when :py:meth:`DataArray.get_axis_num` is 
called,
+    which means many functions will raise.
+    This latter change is technically a breaking change, but whilst allowed,
+    this behaviour was never actually supported! (:issue:`3731`, :pull:`8491`)
+    By `Tom Nicholas <https://github.com/TomNicholas>`_.
+ - Deprecations:
+  - As part of an effort to standardize the API, we're renaming the ``dims``
+    keyword arg to ``dim`` for the minority of functions which current use
+    ``dims``. This started with :py:func:`xarray.dot` & 
:py:meth:`DataArray.dot`
+    and we'll gradually roll this out across all functions. The warnings are
+    currently ``PendingDeprecationWarning``, which are silenced by default. 
We'll
+    convert these to ``DeprecationWarning`` in a future release.
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+  - Raise a ``FutureWarning`` warning that the type of :py:meth:`Dataset.dims` 
will be changed
+    from a mapping of dimension names to lengths to a set of dimension names.
+    This is to increase consistency with :py:meth:`DataArray.dims`.
+    To access a mapping of dimension names to lengths please use 
:py:meth:`Dataset.sizes`.
+    The same change also applies to `DatasetGroupBy.dims`.
+    (:issue:`8496`, :pull:`8500`)
+    By `Tom Nicholas <https://github.com/TomNicholas>`_.
+  - :py:meth:`Dataset.drop` & :py:meth:`DataArray.drop` are now deprecated, 
since pending deprecation for
+    several years. :py:meth:`DataArray.drop_sel` & 
:py:meth:`DataArray.drop_var`
+    replace them for labels & variables respectively. (:pull:`8497`)
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+ - Bug fixes:
+  - Fix dtype inference for ``pd.CategoricalIndex`` when categories are backed 
by a ``pd.ExtensionDtype`` (:pull:`8481`)
+  - Fix writing a variable that requires transposing when not writing to a 
region (:pull:`8484`)
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+  - Static typing of ``p0`` and ``bounds`` arguments of 
:py:func:`xarray.DataArray.curvefit` and :py:func:`xarray.Dataset.curvefit`
+    was changed to ``Mapping`` (:pull:`8502`).
+    By `Michael Niklas <https://github.com/headtr1ck>`_.
+  - Fix typing of :py:func:`xarray.DataArray.to_netcdf` and 
:py:func:`xarray.Dataset.to_netcdf`
+    when ``compute`` is evaluated to bool instead of a Literal (:pull:`8268`).
+    By `Jens Hedegaard Nielsen <https://github.com/jenshnielsen>`_.
+ - Documentation:
+  - Added illustration of updating the time coordinate values of a resampled 
dataset using
+    time offset arithmetic.
+    This is the recommended technique to replace the use of the deprecated 
``loffset`` parameter
+    in ``resample`` (:pull:`8479`).
+    By `Doug Latornell <https://github.com/douglatornell>`_.
+  - Improved error message when attempting to get a variable which doesn't 
exist from a Dataset.
+    (:pull:`8474`)
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+  - Fix default value of ``combine_attrs`` in 
:py:func:`xarray.combine_by_coords` (:pull:`8471`)
+    By `Gregorio L. Trevisan <https://github.com/gtrevisan>`_.
+ - Internal Changes:
+  - :py:meth:`DataArray.bfill` & :py:meth:`DataArray.ffill` now use numbagg 
<https://github.com/numbagg/numbagg>`_ by
+    default, which is up to 5x faster where parallelization is possible. 
(:pull:`8339`)
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+  - Update mypy version to 1.7 (:issue:`8448`, :pull:`8501`).
+    By `Michael Niklas <https://github.com/headtr1ck>`_.
+- update to version 2023.11.0:
+       `This is our 10th year anniversary release! 
<https://github.com/pydata/xarray/discussions/8462>`_ Thank you for your love 
and support.
+ - This release brings the ability to use ``opt_einsum`` for 
:py:func:`xarray.dot` by default,:
+ - support for auto-detecting ``region`` when writing partial datasets to 
Zarr, and the use of h5py:
+ - drivers with ``h5netcdf``.:
+ - Thanks to the 19 contributors to this release:
+ - Aman Bagrecha, Anderson Banihirwe, Ben Mares, Deepak Cherian, Dimitri 
Papadopoulos Orfanos, Ezequiel Cimadevilla Alvarez,:
+ - Illviljan, Justus Magin, Katelyn FitzGerald, Kai Muehlbauer, Martin Durant, 
Maximilian Roos, Metamess, Sam Levang, Spencer Clark, Tom Nicholas, mgunyho, 
templiert:
+ - New Features:
+  - Use `opt_einsum <https://optimized-einsum.readthedocs.io/en/stable/>`_ for 
:py:func:`xarray.dot` by default if installed.
+    By `Deepak Cherian <https://github.com/dcherian>`_. (:issue:`7764`, 
:pull:`8373`).
+  - Add ``DataArray.dt.total_seconds()`` method to match the Pandas API. 
(:pull:`8435`).
+    By `Ben Mares <https://github.com/maresb>`_.
+  - Allow passing ``region="auto"`` in  :py:meth:`Dataset.to_zarr` to 
automatically infer the
+    region to write in the original store. Also implement automatic transpose 
when dimension
+    order does not match the original store. (:issue:`7702`, :issue:`8421`, 
:pull:`8434`).
+    By `Sam Levang <https://github.com/slevang>`_.
+  - Allow the usage of h5py drivers (eg: ros3) via h5netcdf (:pull:`8360`).
+    By `Ezequiel Cimadevilla <https://github.com/zequihg50>`_.
+  - Enable VLEN string fill_values, preserve VLEN string dtypes 
(:issue:`1647`, :issue:`7652`, :issue:`7868`, :pull:`7869`).
+    By `Kai Mühlbauer <https://github.com/kmuehlbauer>`_.
+ - Breaking changes:
+  - drop support for `cdms2 <https://github.com/CDAT/cdms>`_. Please use
+    `xcdat <https://github.com/xCDAT/xcdat>`_ instead (:pull:`8441`).
+    By `Justus Magin <https://github.com/keewis>`_.
+  - Following pandas, :py:meth:`infer_freq` will return ``"Y"``, ``"YS"``,
+    ``"QE"``, ``"ME"``, ``"h"``, ``"min"``, ``"s"``, ``"ms"``, ``"us"``, or
+    ``"ns"`` instead of ``"A"``, ``"AS"``, ``"Q"``, ``"M"``, ``"H"``, ``"T"``,
+    ``"S"``, ``"L"``, ``"U"``, or ``"N"``.  This is to be consistent with the
+    deprecation of the latter frequency strings (:issue:`8394`, :pull:`8415`). 
By
+    `Spencer Clark <https://github.com/spencerkclark>`_.
+  - Bump minimum tested pint version to ``>=0.22``. By `Deepak Cherian 
<https://github.com/dcherian>`_.
+  - Minimum supported versions for the following packages have changed: ``h5py 
>=3.7``, ``h5netcdf>=1.1``.
+    By `Kai Mühlbauer <https://github.com/kmuehlbauer>`_.
+ - Deprecations:
+  - The PseudoNetCDF backend has been removed. By `Deepak Cherian 
<https://github.com/dcherian>`_.
+  - Supplying dimension-ordered sequences to :py:meth:`DataArray.chunk` &
+    :py:meth:`Dataset.chunk` is deprecated in favor of supplying a dictionary 
of
+    dimensions, or a single ``int`` or ``"auto"`` argument covering all
+    dimensions. Xarray favors using dimensions names rather than positions, and
+    this was one place in the API where dimension positions were used.
+    (:pull:`8341`)
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+  - Following pandas, the frequency strings ``"A"``, ``"AS"``, ``"Q"``, 
``"M"``,
+    ``"H"``, ``"T"``, ``"S"``, ``"L"``, ``"U"``, and ``"N"`` are deprecated in
+    favor of ``"Y"``, ``"YS"``, ``"QE"``, ``"ME"``, ``"h"``, ``"min"``, 
``"s"``,
+    ``"ms"``, ``"us"``, and ``"ns"``, respectively.  These strings are used, 
for
+    example, in :py:func:`date_range`, :py:func:`cftime_range`,
+    :py:meth:`DataArray.resample`, and :py:meth:`Dataset.resample` among others
+    (:issue:`8394`, :pull:`8415`).  By `Spencer Clark
+    <https://github.com/spencerkclark>`_.
+  - Rename :py:meth:`Dataset.to_array` to  :py:meth:`Dataset.to_dataarray` for
+    consistency with :py:meth:`DataArray.to_dataset` &
+    :py:func:`open_dataarray` functions. This is a "soft" deprecation — the
+    existing methods work and don't raise any warnings, given the relatively 
small
+    benefits of the change.
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+  - Finally remove ``keep_attrs`` kwarg from :py:meth:`DataArray.resample` and
+    :py:meth:`Dataset.resample`. These were deprecated a long time ago.
+    By `Deepak Cherian <https://github.com/dcherian>`_.
+ - Bug fixes:
+  - Port `bug fix from pandas 
<https://github.com/pandas-dev/pandas/pull/55283>`_
+    to eliminate the adjustment of resample bin edges in the case that the
+    resampling frequency has units of days and is greater than one day
+    (e.g. ``"2D"``, ``"3D"`` etc.) and the ``closed`` argument is set to
+    ``"right"`` to xarray's implementation of resample for data indexed by a
+    :py:class:`CFTimeIndex` (:pull:`8393`).
+    By `Spencer Clark <https://github.com/spencerkclark>`_.
+  - Fix to once again support date offset strings as input to the loffset
+    parameter of resample and test this functionality (:pull:`8422`, 
:issue:`8399`).
+    By `Katelyn FitzGerald <https://github.com/kafitzgerald>`_.
+  - Fix a bug where :py:meth:`DataArray.to_dataset` silently drops a variable
+    if a coordinate with the same name already exists (:pull:`8433`, 
:issue:`7823`).
+    By `András Gunyhó <https://github.com/mgunyho>`_.
+  - Fix for :py:meth:`DataArray.to_zarr` & :py:meth:`Dataset.to_zarr` to close
+    the created zarr store when passing a path with `.zip` extension 
(:pull:`8425`).
+    By `Carl Andersson <https://github.com/CarlAndersson>_`.
+ - Documentation:
+  - Small updates to documentation on distributed writes: See 
:ref:`io.zarr.appending` to Zarr.
+    By `Deepak Cherian <https://github.com/dcherian>`_.
+- update to version 2023.10.1:
+ - This release updates our minimum numpy version in ``pyproject.toml`` to 
1.22,:
+ - consistent with our documentation below.:
+- update to version 2023.10.0:
+ - This release brings performance enhancements to reading Zarr datasets, the 
ability to use `numbagg <https://github.com/numbagg/numbagg>`_ for reductions,:
+ - an expansion in API for ``rolling_exp``, fixes two regressions with 
datetime decoding,:
+ - and many other bugfixes and improvements. Groupby reductions will also use 
``numbagg`` if ``flox>=0.8.1`` and ``numbagg`` are both installed.:
+ - Thanks to our 13 contributors:
+ - Anderson Banihirwe, Bart Schilperoort, Deepak Cherian, Illviljan, Kai 
Mühlbauer, Mathias Hauser, Maximilian Roos, Michael Niklas, Pieter Eendebak, 
Simon Høxbro Hansen, Spencer Clark, Tom White, olimcc:
+ - New Features:
+  - Support high-performance reductions with `numbagg 
<https://github.com/numbagg/numbagg>`_.
+    This is enabled by default if ``numbagg`` is installed.
+    By `Deepak Cherian <https://github.com/dcherian>`_. (:pull:`8316`)
+  - Add ``corr``, ``cov``, ``std`` & ``var`` to ``.rolling_exp``.
+    By `Maximilian Roos <https://github.com/max-sixty>`_. (:pull:`8307`)
+  - :py:meth:`DataArray.where` & :py:meth:`Dataset.where` accept a callable for
+    the ``other`` parameter, passing the object as the only argument. 
Previously,
+    this was only valid for the ``cond`` parameter. (:issue:`8255`)
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+  - ``.rolling_exp`` functions can now take a ``min_weight`` parameter, to only
+    output values when there are sufficient recent non-nan values.
+    ``numbagg>=0.3.1`` is required. (:pull:`8285`)
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+  - :py:meth:`DataArray.sortby` & :py:meth:`Dataset.sortby` accept a callable 
for
+    the ``variables`` parameter, passing the object as the only argument.
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+  - ``.rolling_exp`` functions can now operate on dask-backed arrays, assuming 
the
+    core dim has exactly one chunk. (:pull:`8284`).
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+ - Breaking changes:
+  - Made more arguments keyword-only (e.g. ``keep_attrs``, ``skipna``) for 
many :py:class:`xarray.DataArray` and
+    :py:class:`xarray.Dataset` methods (:pull:`6403`). By `Mathias Hauser 
<https://github.com/mathause>`_.
+  - :py:meth:`Dataset.to_zarr` & :py:meth:`DataArray.to_zarr` require keyword
+    arguments after the initial 7 positional arguments.
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+ - Deprecations:
+  - Rename :py:meth:`Dataset.reset_encoding` & 
:py:meth:`DataArray.reset_encoding`
+    to :py:meth:`Dataset.drop_encoding` & :py:meth:`DataArray.drop_encoding` 
for
+    consistency with other ``drop`` & ``reset`` methods — ``drop`` generally
+    removes something, while ``reset`` generally resets to some default or
+    standard value. (:pull:`8287`, :issue:`8259`)
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+ - Bug fixes:
+  - :py:meth:`DataArray.rename` & :py:meth:`Dataset.rename` would emit a 
warning
+    when the operation was a no-op. (:issue:`8266`)
+    By `Simon Hansen <https://github.com/hoxbro>`_.
+  - Fixed a regression introduced in the previous release checking time-like 
units
+    when encoding/decoding masked data (:issue:`8269`, :pull:`8277`).
+    By `Kai Mühlbauer <https://github.com/kmuehlbauer>`_.
+  - Fix datetime encoding precision loss regression introduced in the previous
+    release for datetimes encoded with units requiring floating point values, 
and
+    a reference date not equal to the first value of the datetime array
+    (:issue:`8271`, :pull:`8272`). By `Spencer Clark
+    <https://github.com/spencerkclark>`_.
+  - Fix excess metadata requests when using a Zarr store. Prior to this, 
metadata
+    was re-read every time data was retrieved from the array, now metadata is 
retrieved only once
+    when they array is initialized.
+    (:issue:`8290`, :pull:`8297`).
+    By `Oliver McCormack <https://github.com/olimcc>`_.
+  - Fix to_zarr ending in a ReadOnlyError when consolidated metadata was used 
and the
+    write_empty_chunks was provided.
+    (:issue:`8323`, :pull:`8326`)
+    By `Matthijs Amesz <https://github.com/Metamess>`_.
+ - Documentation:
+  - Added page on the interoperability of xarray objects.
+    (:pull:`7992`) By `Tom Nicholas <https://github.com/TomNicholas>`_.
+  - Added xarray-regrid to the list of xarray related projects (:pull:`8272`).
+    By `Bart Schilperoort <https://github.com/BSchilperoort>`_.
+ - Internal Changes:
+  - More improvements to support the Python `array API standard 
<https://data-apis.org/array-api/latest/>`_
+    by using duck array ops in more places in the codebase. (:pull:`8267`)
+    By `Tom White <https://github.com/tomwhite>`_.
+- update to version 2023.09.0:
+ - This release continues work on the new :py:class:`xarray.Coordinates` 
object, allows to provide `preferred_chunks` when:
+ - reading from netcdf files, enables :py:func:`xarray.apply_ufunc` to handle 
missing core dimensions and fixes several bugs.:
+ - Thanks to the 24 contributors to this release: Alexander Fischer, Amrest 
Chinkamol, Benoit Bovy, Darsh Ranjan, Deepak Cherian,:
+ - Gianfranco Costamagna, Gregorio L. Trevisan, Illviljan, Joe Hamman, JR, 
Justus Magin, Kai Mühlbauer, Kian-Meng Ang, Kyle Sunden,:
+ - Martin Raspaud, Mathias Hauser, Mattia Almansi, Maximilian Roos, András 
Gunyhó, Michael Niklas, Richard Kleijn, Riulinchen,:
+ - Tom Nicholas and Wiktor Kraśnicki.:
+ - We welcome the following new contributors to Xarray!: Alexander Fischer, 
Amrest Chinkamol, Darsh Ranjan, Gianfranco Costamagna, Gregorio L. Trevisan,:
+ - Kian-Meng Ang, Riulinchen and Wiktor Kraśnicki.:
+ - New Features:
+  - Added the :py:meth:`Coordinates.assign` method that can be used to combine
+    different collections of coordinates prior to assign them to a Dataset or
+    DataArray (:pull:`8102`) at once.
+    By `Benoît Bovy <https://github.com/benbovy>`_.
+  - Provide `preferred_chunks` for data read from netcdf files (:issue:`1440`, 
:pull:`7948`).
+    By `Martin Raspaud <https://github.com/mraspaud>`_.
+  - Added `on_missing_core_dims` to :py:meth:`apply_ufunc` to allow for 
copying or
+    dropping a :py:class:`Dataset`'s variables with missing core dimensions 
(:pull:`8138`).
+    By `Maximilian Roos <https://github.com/max-sixty>`_.
+ - Breaking changes:
+  - The :py:class:`Coordinates` constructor now creates a (pandas) index by
+    default for each dimension coordinate. To keep the previous behavior (no 
index
+    created), pass an empty dictionary to ``indexes``. The constructor now also
+    extracts and add the indexes from another :py:class:`Coordinates` object
+    passed via ``coords`` (:pull:`8107`).
+    By `Benoît Bovy <https://github.com/benbovy>`_.
+  - Static typing of ``xlim`` and ``ylim`` arguments in plotting functions now 
must
+    be ``tuple[float, float]`` to align with matplotlib requirements. 
(:issue:`7802`, :pull:`8030`).
+    By `Michael Niklas <https://github.com/headtr1ck>`_.
+ - Deprecations:
+  - Deprecate passing a :py:class:`pandas.MultiIndex` object directly to the
+    :py:class:`Dataset` and :py:class:`DataArray` constructors as well as to
+    :py:meth:`Dataset.assign` and :py:meth:`Dataset.assign_coords`.
+    A new Xarray :py:class:`Coordinates` object has to be created first using
+    :py:meth:`Coordinates.from_pandas_multiindex` (:pull:`8094`).
+    By `Benoît Bovy <https://github.com/benbovy>`_.
+ - Bug fixes:
+  - Improved static typing of reduction methods (:pull:`6746`).
+    By `Richard Kleijn <https://github.com/rhkleijn>`_.
+  - Fix bug where empty attrs would generate inconsistent tokens 
(:issue:`6970`, :pull:`8101`).
+    By `Mattia Almansi <https://github.com/malmans2>`_.
+  - Improved handling of multi-coordinate indexes when updating coordinates, 
including bug fixes
+    (and improved warnings for deprecated features) for pandas multi-indexes 
(:pull:`8094`).
+    By `Benoît Bovy <https://github.com/benbovy>`_.
+  - Fixed a bug in :py:func:`merge` with ``compat='minimal'`` where the 
coordinate
+    names were not updated properly internally (:issue:`7405`, :issue:`7588`,
+    :pull:`8104`).
+    By `Benoît Bovy <https://github.com/benbovy>`_.
+  - Fix bug where :py:class:`DataArray` instances on the right-hand side
+    of :py:meth:`DataArray.__setitem__` lose dimension names (:issue:`7030`, 
:pull:`8067`).
+    By `Darsh Ranjan <https://github.com/dranjan>`_.
+  - Return ``float64`` in presence of ``NaT`` in 
:py:class:`~core.accessor_dt.DatetimeAccessor` and
+    special case ``NaT`` handling in 
:py:meth:`~core.accessor_dt.DatetimeAccessor.isocalendar`
++++ 41 more lines (skipped)
++++ between /work/SRC/openSUSE:Factory/python-xarray/python-xarray.changes
++++ and 
/work/SRC/openSUSE:Factory/.python-xarray.new.1840/python-xarray.changes

Old:
----
  xarray-2023.8.0.tar.gz
  xarray-pr8139-pandas-fill_value.patch

New:
----
  xarray-2023.12.0.tar.gz

BETA DEBUG BEGIN:
  Old:
- remove obsolete patch file xarray-pr8139-pandas-fill_value.patch
BETA DEBUG END:

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

Other differences:
------------------
++++++ python-xarray.spec ++++++
--- /var/tmp/diff_new_pack.vjL7Gy/_old  2023-12-21 23:39:04.407545127 +0100
+++ /var/tmp/diff_new_pack.vjL7Gy/_new  2023-12-21 23:39:04.407545127 +0100
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:           python-xarray
-Version:        2023.8.0
+Version:        2023.12.0
 Release:        0
 Summary:        N-D labeled arrays and datasets in Python
 License:        Apache-2.0
@@ -27,12 +27,10 @@
 # PATCH-FEATURE-UPSTREAM local_dataset.patch gh#pydata/xarray#5377 
mc...@suse.com
 # fix xr.tutorial.open_dataset to work with the preloaded cache.
 Patch0:         local_dataset.patch
-# PATCH-FIX-UPSTREAM xarray-pr8139-pandas-fill_value.patch 
gh#pydata/xarray#8125, gh#pydata/xarray#8139
-Patch1:         
https://github.com/pydata/xarray/pull/8139.patch#/xarray-pr8139-pandas-fill_value.patch
 BuildRequires:  %{python_module base >= 3.9}
-BuildRequires:  %{python_module numpy-devel >= 1.20}
+BuildRequires:  %{python_module numpy-devel >= 1.22}
 BuildRequires:  %{python_module packaging >= 21.3}
-BuildRequires:  %{python_module pandas >= 1.3}
+BuildRequires:  %{python_module pandas >= 1.4}
 BuildRequires:  %{python_module pip}
 BuildRequires:  %{python_module setuptools_scm}
 BuildRequires:  %{python_module setuptools}

++++++ xarray-2023.8.0.tar.gz -> xarray-2023.12.0.tar.gz ++++++
++++ 37076 lines of diff (skipped)

Reply via email to