Received: by mail.netbsd.org (Postfix, from userid 605) id 44A6A84D7F; Mon, 17 Jun 2019 15:24:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BA41784D2A for ; Mon, 17 Jun 2019 15:24:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id hZ8DNwA_H0BM for ; Mon, 17 Jun 2019 15:24:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EC6CE84D25 for ; Mon, 17 Jun 2019 15:24:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EA020FBF4; Mon, 17 Jun 2019 15:24:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1560785074235790" MIME-Version: 1.0 Date: Mon, 17 Jun 2019 15:24:34 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/finance/py-empyrical To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20190617152434.EA020FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1560785074235790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Jun 17 15:24:34 UTC 2019 Modified Files: pkgsrc/finance/py-empyrical: Makefile PLIST distinfo Log Message: py-empyrical: updated to 0.5.0 0.5.0 DEP: Deprecate all data reading functionality via pandas-datareader * DEP: Deprecate all functions using pandas-datareader * DOC: Update README with deprecation documentation * STY: Markdown style * STY: Markdown style again * REV: revert previous commit * STY: typo * STY: consistent naming convention * DEP: also deprecate any cacheing of data * DEP: forgot to deprecate additional funcs * REV: get_utc_timestamp should not be deprecated * ENH: add function to compute returns from prices * BUG: wrap import in try-except * MAINT: update deprecation warning * MAINT: move `simple_returns` func to `stats` module * MAINT: don't raise deprecation warning for _1_bday_ago * DOC: remove suggestions * TST: added test for simple_returns * MAINT: add simple_returns to init * TST: fixed simple_returns test * STY: use size, not shape * TST: tests passing * DOC: 1_bday_ago no longer deprecated To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/finance/py-empyrical/Makefile \ pkgsrc/finance/py-empyrical/PLIST pkgsrc/finance/py-empyrical/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1560785074235790 Content-Disposition: inline Content-Length: 4341 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/finance/py-empyrical/Makefile diff -u pkgsrc/finance/py-empyrical/Makefile:1.1 pkgsrc/finance/py-empyrical/Makefile:1.2 --- pkgsrc/finance/py-empyrical/Makefile:1.1 Wed Sep 13 16:10:21 2017 +++ pkgsrc/finance/py-empyrical/Makefile Mon Jun 17 15:24:34 2019 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.1 2017/09/13 16:10:21 minskim Exp $ +# $NetBSD: Makefile,v 1.2 2019/06/17 15:24:34 adam Exp $ -DISTNAME= empyrical-0.3.2 +DISTNAME= empyrical-0.5.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -CATEGORIES= finance +CATEGORIES= finance python MASTER_SITES= ${MASTER_SITE_PYPI:=e/empyrical/} MAINTAINER= minskim@NetBSD.org @@ -10,11 +10,15 @@ HOMEPAGE= https://github.com/quantopian/ COMMENT= Common financial risk and performance metrics LICENSE= apache-2.0 -DEPENDS+= ${PYPKGPREFIX}-bottleneck-[0-9]*:../../math/py-bottleneck -DEPENDS+= ${PYPKGPREFIX}-numpy-[0-9]*:../../math/py-numpy -DEPENDS+= ${PYPKGPREFIX}-pandas-[0-9]*:../../math/py-pandas -DEPENDS+= ${PYPKGPREFIX}-scipy-[0-9]*:../../math/py-scipy -DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six +DEPENDS+= ${PYPKGPREFIX}-bottleneck>=1.0.0:../../math/py-bottleneck +DEPENDS+= ${PYPKGPREFIX}-numpy>=1.9.2:../../math/py-numpy +DEPENDS+= ${PYPKGPREFIX}-pandas>=0.16.1:../../math/py-pandas +DEPENDS+= ${PYPKGPREFIX}-pandas-datareader>=0.2:../../math/py-pandas-datareader +DEPENDS+= ${PYPKGPREFIX}-scipy>=0.15.1:../../math/py-scipy + +USE_LANGUAGES= # none + +PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-scipy .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/finance/py-empyrical/PLIST diff -u pkgsrc/finance/py-empyrical/PLIST:1.1 pkgsrc/finance/py-empyrical/PLIST:1.2 --- pkgsrc/finance/py-empyrical/PLIST:1.1 Wed Sep 13 16:10:21 2017 +++ pkgsrc/finance/py-empyrical/PLIST Mon Jun 17 15:24:34 2019 @@ -1,7 +1,8 @@ -@comment $NetBSD: PLIST,v 1.1 2017/09/13 16:10:21 minskim Exp $ +@comment $NetBSD: PLIST,v 1.2 2019/06/17 15:24:34 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/pbr.json ${PYSITELIB}/${EGG_INFODIR}/requires.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/empyrical/__init__.py @@ -10,6 +11,12 @@ ${PYSITELIB}/empyrical/__init__.pyo ${PYSITELIB}/empyrical/_version.py ${PYSITELIB}/empyrical/_version.pyc ${PYSITELIB}/empyrical/_version.pyo +${PYSITELIB}/empyrical/deprecate.py +${PYSITELIB}/empyrical/deprecate.pyc +${PYSITELIB}/empyrical/deprecate.pyo +${PYSITELIB}/empyrical/perf_attrib.py +${PYSITELIB}/empyrical/perf_attrib.pyc +${PYSITELIB}/empyrical/perf_attrib.pyo ${PYSITELIB}/empyrical/periods.py ${PYSITELIB}/empyrical/periods.pyc ${PYSITELIB}/empyrical/periods.pyo @@ -19,6 +26,9 @@ ${PYSITELIB}/empyrical/stats.pyo ${PYSITELIB}/empyrical/tests/__init__.py ${PYSITELIB}/empyrical/tests/__init__.pyc ${PYSITELIB}/empyrical/tests/__init__.pyo +${PYSITELIB}/empyrical/tests/test_perf_attrib.py +${PYSITELIB}/empyrical/tests/test_perf_attrib.pyc +${PYSITELIB}/empyrical/tests/test_perf_attrib.pyo ${PYSITELIB}/empyrical/tests/test_stats.py ${PYSITELIB}/empyrical/tests/test_stats.pyc ${PYSITELIB}/empyrical/tests/test_stats.pyo Index: pkgsrc/finance/py-empyrical/distinfo diff -u pkgsrc/finance/py-empyrical/distinfo:1.1 pkgsrc/finance/py-empyrical/distinfo:1.2 --- pkgsrc/finance/py-empyrical/distinfo:1.1 Wed Sep 13 16:10:21 2017 +++ pkgsrc/finance/py-empyrical/distinfo Mon Jun 17 15:24:34 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2017/09/13 16:10:21 minskim Exp $ +$NetBSD: distinfo,v 1.2 2019/06/17 15:24:34 adam Exp $ -SHA1 (empyrical-0.3.2.tar.gz) = 34593901a04694785e9173c07b71be2a04e06005 -RMD160 (empyrical-0.3.2.tar.gz) = 54e1be05ce4789cfa51b110b4f17f692a4302139 -SHA512 (empyrical-0.3.2.tar.gz) = c79ff3210c19317bc51bdf331ffab8a599ae3e9d41b88acaffe83d1bba47587d9199d3811e4abfdec75245e08c51c2a6ae2eda6164736e4d1cc55e975df2c162 -Size (empyrical-0.3.2.tar.gz) = 37741 bytes +SHA1 (empyrical-0.5.0.tar.gz) = 81ed040a605a08cbf60e0a4f3bc7f223d8224611 +RMD160 (empyrical-0.5.0.tar.gz) = 23ea59a927291050cef2b9528bf90a45b317116b +SHA512 (empyrical-0.5.0.tar.gz) = 0715414e7781b9593aba4e748ad6198c4a9694423727286a437c5b8d68d11797d7b7ce475a96aa56a05916d10bc303effea964c3254a4fda3a8d9d26f3eacaaf +Size (empyrical-0.5.0.tar.gz) = 49802 bytes --_----------=_1560785074235790--