Accepting request 562156 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/562156
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=8
This commit is contained in:
2018-01-07 16:23:01 +00:00
committed by Git OBS Bridge
parent 21dfabe815
commit 5f6c4d8d49
6 changed files with 41 additions and 7 deletions

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Wed Jan 3 22:41:40 UTC 2018 - arun@gmx.de
- specfile:
* update copyright year
- update to version 0.22.0:
* Pandas 0.22.0 changes the handling of empty and all-NA sums and
products. The summary is that
+ The sum of an empty or all-NA Series is now 0
+ The product of an empty or all-NA Series is now 1
+ Weve added a min_count parameter to .sum() and .prod()
controlling the minimum number of valid values for the result to
be valid. If fewer than min_count non-NA values are present, the
result is NA. The default is 0. To return NaN, the 0.21
behavior, use min_count=1.
-------------------------------------------------------------------
Sat Dec 16 23:04:54 UTC 2017 - arun@gmx.de