Received: by mail.netbsd.org (Postfix, from userid 605) id 4D67484D83; Mon, 10 Aug 2020 14:41:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C69CC84D33 for ; Mon, 10 Aug 2020 14:41:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id ueW0qFlrG6Vy for ; Mon, 10 Aug 2020 14:41:37 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3E3F784CFC for ; Mon, 10 Aug 2020 14:41:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 320ACFB28; Mon, 10 Aug 2020 14:41:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1597070497174430" MIME-Version: 1.0 Date: Mon, 10 Aug 2020 14:41:37 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-joblib To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200810144137.320ACFB28@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. --_----------=_1597070497174430 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Aug 10 14:41:37 UTC 2020 Modified Files: pkgsrc/devel/py-joblib: Makefile distinfo Log Message: py-joblib: updated to 0.16.0 Release 0.16.0 -------------- - Fix a problem in the constructors of of Parallel backends classes that inherit from the `AutoBatchingMixin` that prevented the dask backend to properly batch short tasks. - Fix a problem in the way the joblib dask backend batches calls that would badly interact with the dask callable pickling cache and lead to wrong results or errors. - Prevent a dask.distributed bug from surfacing in joblib's dask backend during nested Parallel calls (due to joblib's auto-scattering feature) - Workaround for a race condition after Parallel calls with the dask backend that would cause low level warnings from asyncio coroutines: To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/py-joblib/Makefile \ pkgsrc/devel/py-joblib/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1597070497174430 Content-Disposition: inline Content-Length: 1635 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-joblib/Makefile diff -u pkgsrc/devel/py-joblib/Makefile:1.8 pkgsrc/devel/py-joblib/Makefile:1.9 --- pkgsrc/devel/py-joblib/Makefile:1.8 Thu May 28 12:06:28 2020 +++ pkgsrc/devel/py-joblib/Makefile Mon Aug 10 14:41:36 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2020/05/28 12:06:28 adam Exp $ +# $NetBSD: Makefile,v 1.9 2020/08/10 14:41:36 adam Exp $ -DISTNAME= joblib-0.15.1 +DISTNAME= joblib-0.16.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=j/joblib/} Index: pkgsrc/devel/py-joblib/distinfo diff -u pkgsrc/devel/py-joblib/distinfo:1.8 pkgsrc/devel/py-joblib/distinfo:1.9 --- pkgsrc/devel/py-joblib/distinfo:1.8 Thu May 28 12:06:28 2020 +++ pkgsrc/devel/py-joblib/distinfo Mon Aug 10 14:41:36 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.8 2020/05/28 12:06:28 adam Exp $ +$NetBSD: distinfo,v 1.9 2020/08/10 14:41:36 adam Exp $ -SHA1 (joblib-0.15.1.tar.gz) = 207e8b56b5126fc847a67ea66b47ee1056a1f7f3 -RMD160 (joblib-0.15.1.tar.gz) = d03c657f210d2665259399274689c20bf50803f6 -SHA512 (joblib-0.15.1.tar.gz) = 6e64f9ab2db87b3d41873481f16c85ce2c7507a478a7e8700283ce445d876dd4b3493669afd574dc30ff951bad940f6c522ab4b36536a496bd54b326e942efe1 -Size (joblib-0.15.1.tar.gz) = 347490 bytes +SHA1 (joblib-0.16.0.tar.gz) = db187ceeab5fc84243bed73183431cd5f6f70022 +RMD160 (joblib-0.16.0.tar.gz) = 122b5b3bc3cf5929229d9f5a4d86714ff6790895 +SHA512 (joblib-0.16.0.tar.gz) = d3784dc831bf9d658a38f84883a58773627f124cbc5b80ea94fc2e5fa4fe1a6950efc1be88711602d7394ef9ba66918b788fd1ae0f4254f2d61a2f9503a2d56e +Size (joblib-0.16.0.tar.gz) = 349661 bytes --_----------=_1597070497174430--