Accepting request 789380 from home:apersaud:branches:devel:languages:python:numeric
update to latest version OBS-URL: https://build.opensuse.org/request/show/789380 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-xarray?expand=0&rev=33
This commit is contained in:
parent
4c54ff85ae
commit
e6ceec4211
@ -1,3 +1,104 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Mar 28 16:43:47 UTC 2020 - Arun Persaud <arun@gmx.de>
|
||||||
|
|
||||||
|
- update to version 0.15.1:
|
||||||
|
* Breaking changes
|
||||||
|
+ Raise an error when assigning to the .values or .data attribute
|
||||||
|
of dimension coordinates i.e. IndexVariable objects. This has
|
||||||
|
been broken since v0.12.0. Please use DataArray.assign_coords()
|
||||||
|
or Dataset.assign_coords() instead. (GH3470, PR3862) By Deepak
|
||||||
|
Cherian
|
||||||
|
* New Features
|
||||||
|
+ Weighted array reductions are now supported via the new
|
||||||
|
DataArray.weighted() and Dataset.weighted() methods. See
|
||||||
|
Weighted array reductions. (GH422, PR2922). By Mathias Hauser
|
||||||
|
+ The new jupyter notebook repr (Dataset._repr_html_ and
|
||||||
|
DataArray._repr_html_) (introduced in 0.14.1) is now on by
|
||||||
|
default. To disable, use
|
||||||
|
xarray.set_options(display_style="text"). By Julia Signell.
|
||||||
|
+ Added support for pandas.DatetimeIndex-style rounding of
|
||||||
|
cftime.datetime objects directly via a CFTimeIndex or via the
|
||||||
|
DatetimeAccessor. By Spencer Clark
|
||||||
|
+ Support new h5netcdf backend keyword phony_dims (available from
|
||||||
|
h5netcdf v0.8.0 for H5NetCDFStore. By Kai Mühlbauer.
|
||||||
|
+ Add partial support for unit aware arrays with pint. (PR3706,
|
||||||
|
PR3611) By Justus Magin.
|
||||||
|
+ Dataset.groupby() and DataArray.groupby() now raise a TypeError
|
||||||
|
on multiple string arguments. Receiving multiple string
|
||||||
|
arguments often means a user is attempting to pass multiple
|
||||||
|
dimensions as separate arguments and should instead pass a
|
||||||
|
single list of dimensions. (PR3802) By Maximilian Roos
|
||||||
|
+ map_blocks() can now apply functions that add new unindexed
|
||||||
|
dimensions. By Deepak Cherian
|
||||||
|
+ An ellipsis (...) is now supported in the dims argument of
|
||||||
|
Dataset.stack() and DataArray.stack(), meaning all unlisted
|
||||||
|
dimensions, similar to its meaning in
|
||||||
|
DataArray.transpose(). (PR3826) By Maximilian Roos
|
||||||
|
+ Dataset.where() and DataArray.where() accept a lambda as a first
|
||||||
|
argument, which is then called on the input; replicating pandas’
|
||||||
|
behavior. By Maximilian Roos.
|
||||||
|
+ skipna is available in Dataset.quantile(), DataArray.quantile(),
|
||||||
|
core.groupby.DatasetGroupBy.quantile(),
|
||||||
|
core.groupby.DataArrayGroupBy.quantile() (GH3843, PR3844) By
|
||||||
|
Aaron Spring.
|
||||||
|
* Bug fixes
|
||||||
|
+ Fix Dataset.interp() when indexing array shares coordinates with
|
||||||
|
the indexed variable (GH3252). By David Huard.
|
||||||
|
+ Fix recombination of groups in Dataset.groupby() and
|
||||||
|
DataArray.groupby() when performing an operation that changes
|
||||||
|
the size of the groups along the grouped dimension. By Eric
|
||||||
|
Jansen.
|
||||||
|
+ Fix use of multi-index with categorical values (GH3674). By
|
||||||
|
Matthieu Ancellin.
|
||||||
|
+ Fix alignment with join="override" when some dimensions are
|
||||||
|
unindexed. (GH3681). By Deepak Cherian.
|
||||||
|
+ Fix Dataset.swap_dims() and DataArray.swap_dims() producing
|
||||||
|
index with name reflecting the previous dimension name instead
|
||||||
|
of the new one (GH3748, PR3752). By Joseph K Aicher.
|
||||||
|
+ Use dask_array_type instead of dask_array.Array for type
|
||||||
|
checking. (GH3779, PR3787) By Justus Magin.
|
||||||
|
+ concat() can now handle coordinate variables only present in one
|
||||||
|
of the objects to be concatenated when coords="different". By
|
||||||
|
Deepak Cherian.
|
||||||
|
+ xarray now respects the over, under and bad colors if set on a
|
||||||
|
provided colormap. (GH3590, PR3601) By johnomotani.
|
||||||
|
+ coarsen() now respects xr.set_options(keep_attrs=True) to
|
||||||
|
preserve attributes. Dataset.coarsen() accepts a keyword
|
||||||
|
argument keep_attrs to change this setting. (GH3376, PR3801) By
|
||||||
|
Andrew Thomas.
|
||||||
|
+ Delete associated indexes when deleting coordinate
|
||||||
|
variables. (GH3746). By Deepak Cherian.
|
||||||
|
+ Fix xarray.core.dataset.Dataset.to_zarr() when using append_dim
|
||||||
|
and group simultaneously. (GH3170). By Matthias Meyer.
|
||||||
|
+ Fix html repr on Dataset with non-string keys (PR3807). By
|
||||||
|
Maximilian Roos.
|
||||||
|
* Documentation
|
||||||
|
+ Fix documentation of DataArray removing the deprecated mention
|
||||||
|
that when omitted, dims are inferred from a
|
||||||
|
coords-dict. (PR3821) By Sander van Rijn.
|
||||||
|
+ Improve the where() docstring. By Maximilian Roos
|
||||||
|
+ Update the installation instructions: only explicitly list
|
||||||
|
recommended dependencies (GH3756). By Mathias Hauser.
|
||||||
|
* Internal Changes
|
||||||
|
+ Remove the internal import_seaborn function which handled the
|
||||||
|
deprecation of the seaborn.apionly entry point (GH3747). By
|
||||||
|
Mathias Hauser.
|
||||||
|
+ Don’t test pint integration in combination with datetime
|
||||||
|
objects. (GH3778, PR3788) By Justus Magin.
|
||||||
|
+ Change test_open_mfdataset_list_attr to only run with dask
|
||||||
|
installed (GH3777, PR3780). By Bruno Pagani.
|
||||||
|
+ Preserve the ability to index with method="nearest" with a
|
||||||
|
CFTimeIndex with pandas versions greater than 1.0.1 (GH3751). By
|
||||||
|
Spencer Clark.
|
||||||
|
+ Greater flexibility and improved test coverage of subtracting
|
||||||
|
various types of objects from a CFTimeIndex. By Spencer Clark.
|
||||||
|
+ Update Azure CI MacOS image, given pending removal. By
|
||||||
|
Maximilian Roos
|
||||||
|
+ Remove xfails for scipy 1.0.1 for tests that append to netCDF
|
||||||
|
files (PR3805). By Mathias Hauser.
|
||||||
|
+ Remove conversion to pandas.Panel, given its removal in pandas
|
||||||
|
in favor of xarray’s objects. By Maximilian Roos
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Feb 1 15:02:10 UTC 2020 - Sebastian Wagner <sebix+novell.com@sebix.at>
|
Sat Feb 1 15:02:10 UTC 2020 - Sebastian Wagner <sebix+novell.com@sebix.at>
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
%define skip_python2 1
|
%define skip_python2 1
|
||||||
Name: python-xarray
|
Name: python-xarray
|
||||||
Version: 0.15.0
|
Version: 0.15.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: N-D labeled arrays and datasets in Python
|
Summary: N-D labeled arrays and datasets in Python
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@ -34,8 +34,8 @@ BuildRequires: fdupes
|
|||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-numpy >= 1.15
|
Requires: python-numpy >= 1.15
|
||||||
Requires: python-pandas >= 0.25
|
Requires: python-pandas >= 0.25
|
||||||
Suggests: python-dask >= 2.2
|
|
||||||
Recommends: python-scipy >= 1.3
|
Recommends: python-scipy >= 1.3
|
||||||
|
Suggests: python-dask >= 2.2
|
||||||
Provides: python-xray = %{version}
|
Provides: python-xray = %{version}
|
||||||
Obsoletes: python-xray < %{version}
|
Obsoletes: python-xray < %{version}
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c72d160c970725201f769e80fb91cbad68d6ebf21d68fcc371385a6c950459c3
|
|
||||||
size 1911362
|
|
3
xarray-0.15.1.tar.gz
Normal file
3
xarray-0.15.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:64e3138d87b641e22fe7a003c94abc685896b247b63e434505c1e6b38c91a8fb
|
||||||
|
size 1934184
|
Loading…
x
Reference in New Issue
Block a user