pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/math/py-statsmodels Release 0.8.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f1ce55f9261c
branches:  trunk
changeset: 362662:f1ce55f9261c
user:      adam <adam%pkgsrc.org@localhost>
date:      Sun May 21 09:07:37 2017 +0000

description:
Release 0.8.0

The main features of this release are several new time series models based on the statespace framework, multiple imputation using MICE as well as many other enhancements. The codebase also has been 
updated to be compatible with recent numpy and pandas releases.

Statsmodels is using now github to store the updated documentation which is available under http://www.statsmodels.org/stable for the last release, and http://www.statsmodels.org/dev/ for the 
development version.

diffstat:

 math/py-statsmodels/Makefile |   6 +++---
 math/py-statsmodels/PLIST    |  14 +++++++++++++-
 math/py-statsmodels/distinfo |  10 +++++-----
 3 files changed, 21 insertions(+), 9 deletions(-)

diffs (82 lines):

diff -r 57387b466d36 -r f1ce55f9261c math/py-statsmodels/Makefile
--- a/math/py-statsmodels/Makefile      Sun May 21 08:54:33 2017 +0000
+++ b/math/py-statsmodels/Makefile      Sun May 21 09:07:37 2017 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2016/07/15 07:35:50 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2017/05/21 09:07:37 adam Exp $
 
-DISTNAME=      statsmodels-0.8.0rc1
+DISTNAME=      statsmodels-0.8.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    math
 MASTER_SITES=  ${MASTER_SITE_PYPI:=s/statsmodels/}
@@ -10,11 +10,11 @@
 COMMENT=       Statistical computations and models for use with SciPy
 LICENSE=       modified-bsd
 
+DEPENDS+=      ${PYPKGPREFIX}-cython>=0.14.1:../../devel/py-cython
 DEPENDS+=      ${PYPKGPREFIX}-pandas>=0.14.1:../../math/py-pandas
 DEPENDS+=      ${PYPKGPREFIX}-patsy>=0.3.0:../../math/py-patsy
 DEPENDS+=      ${PYPKGPREFIX}-scipy>=0.12.0:../../math/py-scipy
 
-.include "../../devel/py-cython/buildlink3.mk"
 .include "../../lang/python/egg.mk"
 .include "../../math/py-numpy/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 57387b466d36 -r f1ce55f9261c math/py-statsmodels/PLIST
--- a/math/py-statsmodels/PLIST Sun May 21 08:54:33 2017 +0000
+++ b/math/py-statsmodels/PLIST Sun May 21 09:07:37 2017 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2016/07/15 07:35:50 wiz Exp $
+@comment $NetBSD: PLIST,v 1.2 2017/05/21 09:07:37 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -1513,6 +1513,9 @@
 ${PYSITELIB}/statsmodels/stats/tests/results/influence_lsdiag_R.json
 ${PYSITELIB}/statsmodels/stats/tests/results/influence_measures_R.csv
 ${PYSITELIB}/statsmodels/stats/tests/results/influence_measures_bool_R.csv
+${PYSITELIB}/statsmodels/stats/tests/results/results_multinomial_proportions.py
+${PYSITELIB}/statsmodels/stats/tests/results/results_multinomial_proportions.pyc
+${PYSITELIB}/statsmodels/stats/tests/results/results_multinomial_proportions.pyo
 ${PYSITELIB}/statsmodels/stats/tests/results/results_panelrobust.py
 ${PYSITELIB}/statsmodels/stats/tests/results/results_panelrobust.pyc
 ${PYSITELIB}/statsmodels/stats/tests/results/results_panelrobust.pyo
@@ -1885,6 +1888,9 @@
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_dynamic_factor.py
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_dynamic_factor.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_dynamic_factor.pyo
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_impulse_responses.py
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_impulse_responses.pyc
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_impulse_responses.pyo
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_kalman.py
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_kalman.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_kalman.pyo
@@ -1903,6 +1909,12 @@
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_sarimax.py
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_sarimax.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_sarimax.pyo
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_save.py
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_save.pyc
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_save.pyo
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_simulate.py
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_simulate.pyc
+${PYSITELIB}/statsmodels/tsa/statespace/tests/test_simulate.pyo
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_smoothing.py
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_smoothing.pyc
 ${PYSITELIB}/statsmodels/tsa/statespace/tests/test_smoothing.pyo
diff -r 57387b466d36 -r f1ce55f9261c math/py-statsmodels/distinfo
--- a/math/py-statsmodels/distinfo      Sun May 21 08:54:33 2017 +0000
+++ b/math/py-statsmodels/distinfo      Sun May 21 09:07:37 2017 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2016/07/15 07:35:50 wiz Exp $
+$NetBSD: distinfo,v 1.2 2017/05/21 09:07:37 adam Exp $
 
-SHA1 (statsmodels-0.8.0rc1.tar.gz) = 808bddc2a04e2429c76fb594da05fd2952996292
-RMD160 (statsmodels-0.8.0rc1.tar.gz) = d2547e06657deac9270a9d6c972a4e042b4ffeb3
-SHA512 (statsmodels-0.8.0rc1.tar.gz) = e963c7fc98a8d087df43ef0b6f7807dc25d67713fdf5a74391979604291f194e088ac0669465f6c94da867f58872fcee6cafdfb3ad9d85ce4c903316351734ee
-Size (statsmodels-0.8.0rc1.tar.gz) = 9384625 bytes
+SHA1 (statsmodels-0.8.0.tar.gz) = bbd5241d5edea5ebfcf1d296005c2ce3b8e1106b
+RMD160 (statsmodels-0.8.0.tar.gz) = 9e4226caca648f5398a74776822701c42b09da05
+SHA512 (statsmodels-0.8.0.tar.gz) = 32bb7f36acc16796c445e5f695d958af4525fbbb2d374376fb4a73c972e3796fad05532456cef4aa5ee59d6fce11921174e17bbfc2e05d2488ce1ceac5175239
+Size (statsmodels-0.8.0.tar.gz) = 9464851 bytes



Home | Main Index | Thread Index | Old Index