forked from pool/python-xarray
Accepting request 638355 from devel:languages:python:numeric
- update to version 0.10.9: * Enhancements + differentiate() and differentiate() are newly added. (GH1332) By Keisuke Fujii. + Default colormap for sequential and divergent data can now be set via set_options() (GH2394) By Julius Busecke. + min_count option is newly supported in sum(), prod() and sum(), and prod(). (GH2230) By Keisuke Fujii. + plot() now accepts the kwargs xscale, yscale, xlim, ylim, xticks, yticks just like Pandas. Also xincrease=False, yincrease=False now use matplotlib’s axis inverting methods instead of setting limits. By Deepak Cherian. (GH2224) + DataArray coordinates and Dataset coordinates and data variables are now displayed as a b … y z rather than a b c d …. (GH1186) By Seth P. + A new CFTimeIndex-enabled cftime_range() function for use in generating dates from standard or non-standard calendars. By Spencer Clark. + When interpolating over a datetime64 axis, you can now provide a datetime string instead of a datetime64 object. E.g. da.interp(time='1991-02-01') (GH2284) By Deepak Cherian. + A clear error message is now displayed if a set or dict is passed in place of an array (GH2331) By Maximilian Roos. + Applying unstack to a large DataArray or Dataset is now much faster if the MultiIndex has not been modified after stacking the indices. (GH1560) By Maximilian Maahn. + You can now control whether or not to offset the coordinates when using the roll method and the current behavior, coordinates rolled by default, raises a deprecation warning unless OBS-URL: https://build.opensuse.org/request/show/638355 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-xarray?expand=0&rev=5
This commit is contained in:
parent
3d4028d757
commit
c41b6b0cb6
@ -1,3 +1,69 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 26 03:15:12 UTC 2018 - Arun Persaud <arun@gmx.de>
|
||||
|
||||
- update to version 0.10.9:
|
||||
* Enhancements
|
||||
+ differentiate() and differentiate() are newly added. (GH1332) By
|
||||
Keisuke Fujii.
|
||||
+ Default colormap for sequential and divergent data can now be
|
||||
set via set_options() (GH2394) By Julius Busecke.
|
||||
+ min_count option is newly supported in sum(), prod() and sum(),
|
||||
and prod(). (GH2230) By Keisuke Fujii.
|
||||
+ plot() now accepts the kwargs xscale, yscale, xlim, ylim,
|
||||
xticks, yticks just like Pandas. Also xincrease=False,
|
||||
yincrease=False now use matplotlib’s axis inverting methods
|
||||
instead of setting limits. By Deepak Cherian. (GH2224)
|
||||
+ DataArray coordinates and Dataset coordinates and data variables
|
||||
are now displayed as a b … y z rather than a b c d …. (GH1186)
|
||||
By Seth P.
|
||||
+ A new CFTimeIndex-enabled cftime_range() function for use in
|
||||
generating dates from standard or non-standard calendars. By
|
||||
Spencer Clark.
|
||||
+ When interpolating over a datetime64 axis, you can now provide a
|
||||
datetime string instead of a datetime64
|
||||
object. E.g. da.interp(time='1991-02-01') (GH2284) By Deepak
|
||||
Cherian.
|
||||
+ A clear error message is now displayed if a set or dict is
|
||||
passed in place of an array (GH2331) By Maximilian Roos.
|
||||
+ Applying unstack to a large DataArray or Dataset is now much
|
||||
faster if the MultiIndex has not been modified after stacking
|
||||
the indices. (GH1560) By Maximilian Maahn.
|
||||
+ You can now control whether or not to offset the coordinates
|
||||
when using the roll method and the current behavior, coordinates
|
||||
rolled by default, raises a deprecation warning unless
|
||||
explicitly setting the keyword argument. (GH1875) By Andrew
|
||||
Huang.
|
||||
+ You can now call unstack without arguments to unstack every
|
||||
MultiIndex in a DataArray or Dataset. By Julia Signell.
|
||||
+ Added the ability to pass a data kwarg to copy to create a new
|
||||
object with the same metadata as the original object but using
|
||||
new values. By Julia Signell.
|
||||
* Bug fixes
|
||||
+ xarray.plot.imshow() correctly uses the origin
|
||||
argument. (GH2379) By Deepak Cherian.
|
||||
+ Fixed DataArray.to_iris() failure while creating DimCoord by
|
||||
falling back to creating AuxCoord. Fixed dependency on var_name
|
||||
attribute being set. (GH2201) By Thomas Voigt.
|
||||
+ Fixed a bug in zarr backend which prevented use with datasets
|
||||
with invalid chunk size encoding after reading from an existing
|
||||
store (GH2278). By Joe Hamman.
|
||||
+ Tests can be run in parallel with pytest-xdist By Tony Tung.
|
||||
+ Follow up the renamings in dask; from dask.ghost to dask.overlap
|
||||
By Keisuke Fujii.
|
||||
+ Now raises a ValueError when there is a conflict between
|
||||
dimension names and level names of MultiIndex. (GH2299) By
|
||||
Keisuke Fujii.
|
||||
+ Follow up the renamings in dask; from dask.ghost to dask.overlap
|
||||
By Keisuke Fujii.
|
||||
+ Now xr.apply_ufunc() raises a ValueError when the size of
|
||||
input_core_dims is inconsistent with the number of
|
||||
arguments. (GH2341) By Keisuke Fujii.
|
||||
+ Fixed Dataset.filter_by_attrs() behavior not matching
|
||||
netCDF4.Dataset.get_variables_by_attributes(). When more than
|
||||
one key=value is passed into Dataset.filter_by_attrs() it will
|
||||
now return a Dataset with variables which pass all the
|
||||
filters. (GH2315) By Andrew Barna.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 17:32:13 UTC 2018 - arun@gmx.de
|
||||
|
||||
|
@ -12,13 +12,13 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-xarray
|
||||
Version: 0.10.8
|
||||
Version: 0.10.9
|
||||
Release: 0
|
||||
Summary: N-D labeled arrays and datasets in Python
|
||||
License: Apache-2.0
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6a1f2c5dc5f639f8343f70ed08d0afbb477a3867298ef38f0d9bf4aafa0fb750
|
||||
size 1630608
|
3
xarray-0.10.9.tar.gz
Normal file
3
xarray-0.10.9.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cb3028ba157e1953fd279bbe17c07bb5faa459ddf555bbe687c927e4cdfeecc3
|
||||
size 1688163
|
Loading…
x
Reference in New Issue
Block a user