b03523e7e9
Summary of changes since 0.10.1: This is a major release from 0.10.1 and includes many new features and enhancements along with a large number of bug fixes. The methods of Selecting Data have had quite a number of additions, and Dtype support is now full-fledged. There are also a number of important API changes that long-time pandas users should pay close attention to. * New precision indexing fields loc, iloc, at, and iat, to reduce occasional ambiguity in the catch-all hitherto ix method. * Expanded support for NumPy data types in DataFrame. * NumExpr integration to accelerate various operator evaluation. * Improved DataFrame to CSV exporting performance. For a full list refer to the "what's new" page. Also fixes PLIST errors introduced in last update.
30 lines
984 B
Makefile
30 lines
984 B
Makefile
# $NetBSD: Makefile,v 1.4 2013/05/16 23:10:16 bad Exp $
|
|
|
|
DISTNAME= pandas-0.11.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= math graphics python
|
|
MASTER_SITES= http://pypi.python.org/packages/source/p/pandas/
|
|
|
|
MAINTAINER= bad@NetBSD.org
|
|
HOMEPAGE= http://pandas.pydata.org/
|
|
COMMENT= Python Data Analysis Library
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-dateutil>=1.5:../../time/py-dateutil
|
|
DEPENDS+= ${PYPKGPREFIX}-pytz>=1.5:../../time/py-pytz
|
|
DEPENDS+= ${PYPKGPREFIX}-scipy>=0.7:../../math/py-scipy
|
|
DEPENDS+= ${PYPKGPREFIX}-pytables>=2.2:../../math/py-pytables
|
|
|
|
PYDISTUTILSPKG= yes
|
|
PLIST_SUBST+= PYPKGPREFIX=${PYPKGPREFIX}
|
|
USE_LANGUAGES+= c c++
|
|
|
|
# XXX Avoid picking up other compilers when installed
|
|
.include "../../mk/compiler.mk"
|
|
|
|
# XXX want py-bottleneck
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../math/py-numpy/buildlink3.mk"
|
|
.include "../../math/py-numexpr/buildlink3.mk"
|
|
.include "../../graphics/py-matplotlib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|