python-pandas: update to 0.19.1
This commit is contained in:
parent
912d8332fb
commit
7a4f6b1239
|
@ -1,15 +0,0 @@
|
|||
--- setup.py.orig
|
||||
+++ setup.py
|
||||
@@ -85,7 +85,11 @@ def is_platform_mac():
|
||||
try:
|
||||
if not _CYTHON_INSTALLED:
|
||||
raise ImportError('No supported version of Cython installed.')
|
||||
- from Cython.Distutils import build_ext as _build_ext
|
||||
+ try:
|
||||
+ from Cython.Distutils.old_build_ext import old_build_ext as _build_ext
|
||||
+ except ImportError:
|
||||
+ # Pre 0.25
|
||||
+ from Cython.Distutils import build_ext as _build_ext
|
||||
cython = True
|
||||
except ImportError:
|
||||
cython = False
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'python-pandas'
|
||||
pkgname=python-pandas
|
||||
version=0.19.0
|
||||
revision=3
|
||||
version=0.19.1
|
||||
revision=1
|
||||
wrksrc="pandas-${version}"
|
||||
build_style=python-module
|
||||
hostmakedepends="python-setuptools python3-setuptools"
|
||||
|
@ -14,8 +14,8 @@ short_desc="Python2 data analysis library"
|
|||
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
||||
homepage="http://pandas.pydata.org/"
|
||||
license="3-clause-BSD"
|
||||
distfiles="${PYPI_SITE}/p/pandas/pandas-${version}.tar.gz"
|
||||
checksum=4697606cdf023c6b7fcb74e48aaf25cf282a1a00e339d2d274cf1b663748805b
|
||||
distfiles="https://github.com/pandas-dev/pandas/archive/v${version}.tar.gz"
|
||||
checksum=48376dfe9f3ba408bdba3d08e0543c00a813525468134694893fe8ba53916a86
|
||||
|
||||
post_install() {
|
||||
vlicense LICENSE
|
||||
|
|
Loading…
Reference in New Issue