Accepting request 669375 from home:TheBlackCat:branches:devel:languages:python:numeric

- Update to 0.24.0
  Highlights include:
  * Optional Integer NA Support
  * New APIs for accessing the array backing a Series or Index
  * A new top-level method for creating arrays
  * Store Interval and Period data in a Series or DataFrame
  * Support for joining on two MultiIndexes

OBS-URL: https://build.opensuse.org/request/show/669375
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=9
This commit is contained in:
Todd R 2019-01-28 21:13:38 +00:00 committed by Git OBS Bridge
parent 973423d849
commit 060d116c14
4 changed files with 25 additions and 11 deletions

View File

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

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

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

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Mon Jan 28 15:46:08 UTC 2019 - Todd R <toddrme2178@gmail.com>
- Update to 0.24.0
Highlights include:
* Optional Integer NA Support
* New APIs for accessing the array backing a Series or Index
* A new top-level method for creating arrays
* Store Interval and Period data in a Series or DataFrame
* Support for joining on two MultiIndexes
-------------------------------------------------------------------
Wed Aug 8 16:26:30 UTC 2018 - jengelh@inai.de

View File

@ -17,23 +17,22 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define oldpython python
%define oldpython python
Name: python-pandas
Version: 0.23.4
Version: 0.24.0
Release: 0
Summary: Python module for working with "relational" or "labeled" data
License: BSD-3-Clause
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 Cython}
BuildRequires: %{python_module SQLAlchemy}
BuildRequires: %{python_module XlsxWriter}
BuildRequires: %{python_module beautifulsoup4 >= 4.2.1}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module lxml}
BuildRequires: %{python_module nose}
BuildRequires: %{python_module numpy-devel >= 1.9.0}
BuildRequires: %{python_module numpy-devel >= 1.12.0}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module python-dateutil >= 2.5}
BuildRequires: %{python_module python-dateutil}
@ -44,9 +43,10 @@ BuildRequires: %{python_module xlrd}
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: python-rpm-macros
Requires: python-Cython
Requires: python-Cython >= 0.28.2
Requires: python-Tempita
Requires: python-lxml
Requires: python-numpy >= 1.9.0
Requires: python-numpy >= 1.12.0
Requires: python-python-dateutil >= 2.5
Requires: python-pytz >= 2011k
Requires: python-six
@ -72,10 +72,12 @@ Recommends: python-xarray >= 0.7.0
Recommends: python-xlrd
Recommends: python-xlwt
Recommends: xclip
Obsoletes: python-pandas-doc
Obsoletes: python-pandas-doc < %{version}
Provides: python-pandas-doc = %{version}
%ifpython2
Recommends: python-backports.lzma
Obsoletes: %{oldpython}-pandas-doc
Obsoletes: %{oldpython}-pandas-doc < %{version}
Provides: %{oldpython}-pandas-doc = %{version}
%endif
%python_subpackages
@ -88,6 +90,7 @@ http://pandas.pydata.org/pandas-docs/stable/ .
%prep
%setup -q -n pandas-%{version}
sed -i -e '/^#!\//, 1d' pandas/core/computation/eval.py
%build
export CFLAGS="%{optflags} -fno-strict-aliasing"