Accepting request 539578 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/539578
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pandas?expand=0&rev=6
This commit is contained in:
Dominique Leuenberger 2017-11-10 13:56:41 +00:00 committed by Git OBS Bridge
parent 612ea26e48
commit c9c984b20d
6 changed files with 59 additions and 7 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a777e07633d83d546c55706420179551c8e01075b53c497dcf8ae4036766bc66
size 10402185

3
pandas-0.21.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5cd5cb30e72eeaf202f0e5e180780b897570e889d2db328c689a5a263405c559
size 11266258

View File

@ -1,3 +1,29 @@
-------------------------------------------------------------------
Mon Oct 30 06:05:48 UTC 2017 - arun@gmx.de
- specfile:
* updated minimum numpy version to 1.9.0 (see setup.py)
- update to version 0.21.0:
* Highlights include:
+ Integration with Apache Parquet, including a new top-level
read_parquet() function and DataFrame.to_parquet() method, see
here.
+ New user-facing pandas.api.types.CategoricalDtype for specifying
categoricals independent of the data, see here.
+ The behavior of sum and prod on all-NaN Series/DataFrames is now
consistent and no longer depends on whether bottleneck is
installed, see here.
+ Compatibility fixes for pypy, see here.
+ Additions to the drop, reindex and rename API to make them more
consistent, see here.
+ Addition of the new methods DataFrame.infer_objects (see here)
and GroupBy.pipe (see here).
+ Indexing with a list of labels, where one or more of the labels
is missing, is deprecated and will raise a KeyError in a future
version, see here.
* full list at http://pandas.pydata.org/pandas-docs/stable/whatsnew.html
-------------------------------------------------------------------
Sat Sep 23 21:12:48 UTC 2017 - arun@gmx.de

View File

@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-pandas-doc
Version: 0.20.3
Version: 0.21.0
Release: 0
Summary: Documentation for python-pandas
License: BSD-3-Clause

View File

@ -1,3 +1,29 @@
-------------------------------------------------------------------
Mon Oct 30 06:05:48 UTC 2017 - arun@gmx.de
- specfile:
* updated minimum numpy version to 1.9.0 (see setup.py)
- update to version 0.21.0:
* Highlights include:
+ Integration with Apache Parquet, including a new top-level
read_parquet() function and DataFrame.to_parquet() method, see
here.
+ New user-facing pandas.api.types.CategoricalDtype for specifying
categoricals independent of the data, see here.
+ The behavior of sum and prod on all-NaN Series/DataFrames is now
consistent and no longer depends on whether bottleneck is
installed, see here.
+ Compatibility fixes for pypy, see here.
+ Additions to the drop, reindex and rename API to make them more
consistent, see here.
+ Addition of the new methods DataFrame.infer_objects (see here)
and GroupBy.pipe (see here).
+ Indexing with a list of labels, where one or more of the labels
is missing, is deprecated and will raise a KeyError in a future
version, see here.
* full list at http://pandas.pydata.org/pandas-docs/stable/whatsnew.html
-------------------------------------------------------------------
Sat Sep 23 21:12:48 UTC 2017 - arun@gmx.de

View File

@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-pandas
Version: 0.20.3
Version: 0.21.0
Release: 0
Summary: Make working with "relational" or "labeled" data both easy and intuitive
License: BSD-3-Clause
@ -26,7 +26,7 @@ Group: Development/Libraries/Python
Url: http://pandas.pydata.org/
Source0: https://files.pythonhosted.org/packages/source/p/pandas/pandas-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module numpy-devel >= 1.7.1}
BuildRequires: %{python_module numpy-devel >= 1.9.0}
BuildRequires: %{python_module python-dateutil >= 1.5}
BuildRequires: %{python_module pytz}
BuildRequires: %{python_module setuptools}
@ -34,7 +34,7 @@ BuildRequires: fdupes
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: python-rpm-macros
Requires: python-numpy >= 1.7.1
Requires: python-numpy >= 1.9.0
Requires: python-python-dateutil >= 1.5
Requires: python-pytz
Recommends: python-Bottleneck