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'
|
# Template file for 'python-pandas'
|
||||||
pkgname=python-pandas
|
pkgname=python-pandas
|
||||||
version=0.19.0
|
version=0.19.1
|
||||||
revision=3
|
revision=1
|
||||||
wrksrc="pandas-${version}"
|
wrksrc="pandas-${version}"
|
||||||
build_style=python-module
|
build_style=python-module
|
||||||
hostmakedepends="python-setuptools python3-setuptools"
|
hostmakedepends="python-setuptools python3-setuptools"
|
||||||
|
@ -14,8 +14,8 @@ short_desc="Python2 data analysis library"
|
||||||
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
||||||
homepage="http://pandas.pydata.org/"
|
homepage="http://pandas.pydata.org/"
|
||||||
license="3-clause-BSD"
|
license="3-clause-BSD"
|
||||||
distfiles="${PYPI_SITE}/p/pandas/pandas-${version}.tar.gz"
|
distfiles="https://github.com/pandas-dev/pandas/archive/v${version}.tar.gz"
|
||||||
checksum=4697606cdf023c6b7fcb74e48aaf25cf282a1a00e339d2d274cf1b663748805b
|
checksum=48376dfe9f3ba408bdba3d08e0543c00a813525468134694893fe8ba53916a86
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
vlicense LICENSE
|
vlicense LICENSE
|
||||||
|
|
Loading…
Reference in New Issue