1
0
forked from pool/python-pandas

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

@@ -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"