Received: by mail.netbsd.org (Postfix, from userid 605) id 4344584CE4; Fri, 5 Jan 2018 16:13:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C2ABA84CDD for ; Fri, 5 Jan 2018 16:13:51 +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 2eDaZKvDzM9Z for ; Fri, 5 Jan 2018 16:13:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4B1C484C2E for ; Fri, 5 Jan 2018 16:13:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 41BC4FBDE; Fri, 5 Jan 2018 16:13:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1515168831281950" MIME-Version: 1.0 Date: Fri, 5 Jan 2018 16:13:51 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/math/py-pandas To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20180105161351.41BC4FBDE@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. --_----------=_1515168831281950 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Fri Jan 5 16:13:51 UTC 2018 Modified Files: pkgsrc/math/py-pandas: Makefile distinfo Log Message: py-pandas: updated to 0.22.0 v0.22.0: This is a major release from 0.21.1 and includes a single, API-breaking change. We recommend that all users upgrade to this version after carefully reading the release note. The only changes are: * The sum of an empty or all-NA Series is now 0 * The product of an empty or all-NA Series is now 1 * We’ve added a min_count parameter to .sum() and .prod() controlling the minimum number of valid values for the result to be valid. If fewer than min_count non-NA values are present, the result is NA. The default is 0. To return NaN, the 0.21 behavior, use min_count=1. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/math/py-pandas/Makefile cvs rdiff -u -r1.15 -r1.16 pkgsrc/math/py-pandas/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1515168831281950 Content-Disposition: inline Content-Length: 1648 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/py-pandas/Makefile diff -u pkgsrc/math/py-pandas/Makefile:1.19 pkgsrc/math/py-pandas/Makefile:1.20 --- pkgsrc/math/py-pandas/Makefile:1.19 Thu Dec 14 13:37:59 2017 +++ pkgsrc/math/py-pandas/Makefile Fri Jan 5 16:13:51 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.19 2017/12/14 13:37:59 adam Exp $ +# $NetBSD: Makefile,v 1.20 2018/01/05 16:13:51 adam Exp $ -DISTNAME= pandas-0.21.1 +DISTNAME= pandas-0.22.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= math graphics python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pandas/} Index: pkgsrc/math/py-pandas/distinfo diff -u pkgsrc/math/py-pandas/distinfo:1.15 pkgsrc/math/py-pandas/distinfo:1.16 --- pkgsrc/math/py-pandas/distinfo:1.15 Thu Dec 14 13:37:59 2017 +++ pkgsrc/math/py-pandas/distinfo Fri Jan 5 16:13:51 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.15 2017/12/14 13:37:59 adam Exp $ +$NetBSD: distinfo,v 1.16 2018/01/05 16:13:51 adam Exp $ -SHA1 (pandas-0.21.1.tar.gz) = 0cdfe20a01e1b54e2b1e5cb520d79ed5e60ddef0 -RMD160 (pandas-0.21.1.tar.gz) = baa8060f23f1ecc0ba8637ae0ddd6a9967c29a19 -SHA512 (pandas-0.21.1.tar.gz) = 73c9a549a13dbd148c70e22514378cc45c11703714b3732f27a96ed9b13655820dadf5f2fadae62719f0b4e70d906737f265ef47d65e0fdeada02fd0bb300042 -Size (pandas-0.21.1.tar.gz) = 11288319 bytes +SHA1 (pandas-0.22.0.tar.gz) = e62c0c9e606054c1c7a081fd3f4dcb74c0b31ff9 +RMD160 (pandas-0.22.0.tar.gz) = 6a8e2f6494c8c9f0f7adfbb738203e5e3f0b55c6 +SHA512 (pandas-0.22.0.tar.gz) = a6e3dcf55845cf4faf0aca43013eccf63310c76faba6d316f36067bb7ac986bcda0975003711eb6559746ad3770c0e88b307c4da040105c6825cf144f4e0797a +Size (pandas-0.22.0.tar.gz) = 11297071 bytes --_----------=_1515168831281950--