pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/py-joblib py-joblib: updated to 0.14.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b8758e214c0d
branches:  trunk
changeset: 403710:b8758e214c0d
user:      adam <adam%pkgsrc.org@localhost>
date:      Thu Oct 31 10:24:52 2019 +0000

description:
py-joblib: updated to 0.14.0

Release 0.14.0
Improved the load balancing between workers to avoid stranglers caused by an excessively large batch size when the task duration is varying significantly (because of the combined use of 
joblib.Parallel and joblib.Memory with a partially warmed cache for instance). https://github.com/joblib/joblib/pull/899
Add official support for Python 3.8: fixed protocol number in Hasher and updated tests.
Fix a deadlock when using the dask backend (when scattering large numpy arrays). https://github.com/joblib/joblib/pull/914
Warn users that they should never use joblib.load with files from untrusted sources. Fix security related API change introduced in numpy 1.6.3 that would prevent using joblib with recent numpy 
versions. https://github.com/joblib/joblib/pull/879
Upgrade to cloudpickle 1.1.1 that add supports for the upcoming Python 3.8 release among other things. https://github.com/joblib/joblib/pull/878
Fix semaphore availability checker to avoid spawning resource trackers on module import. https://github.com/joblib/joblib/pull/893
Fix the oversubscription protection to only protect against nested Parallel calls. This allows joblib to be run in background threads. https://github.com/joblib/joblib/pull/934
Fix ValueError (negative dimensions) when pickling large numpy arrays on Windows. https://github.com/joblib/joblib/pull/920
Upgrade to loky 2.6.0 that add supports for the setting environment variables in child before loading any module. https://github.com/joblib/joblib/pull/940
Fix the oversubscription protection for native libraries using threadpools (OpenBLAS, MKL, Blis and OpenMP runtimes). The maximal number of threads is can now be set in children using the 
inner_max_num_threads in parallel_backend. It defaults to cpu_count() // n_jobs.

diffstat:

 devel/py-joblib/Makefile |   6 +++---
 devel/py-joblib/PLIST    |  16 +++++++++++-----
 devel/py-joblib/distinfo |  10 +++++-----
 3 files changed, 19 insertions(+), 13 deletions(-)

diffs (71 lines):

diff -r ed004cb514ec -r b8758e214c0d devel/py-joblib/Makefile
--- a/devel/py-joblib/Makefile  Thu Oct 31 10:19:50 2019 +0000
+++ b/devel/py-joblib/Makefile  Thu Oct 31 10:24:52 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2019/02/14 09:01:45 adam Exp $
+# $NetBSD: Makefile,v 1.5 2019/10/31 10:24:52 adam Exp $
 
-DISTNAME=      joblib-0.13.2
+DISTNAME=      joblib-0.14.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=j/joblib/}
@@ -17,5 +17,5 @@
 do-test:
        cd ${WRKSRC}/joblib && pytest-${PYVERSSUFFIX}
 
-.include "../../lang/python/distutils.mk"
+.include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r ed004cb514ec -r b8758e214c0d devel/py-joblib/PLIST
--- a/devel/py-joblib/PLIST     Thu Oct 31 10:19:50 2019 +0000
+++ b/devel/py-joblib/PLIST     Thu Oct 31 10:24:52 2019 +0000
@@ -1,5 +1,8 @@
-@comment $NetBSD: PLIST,v 1.4 2019/02/14 09:01:45 adam Exp $
-${PYSITELIB}/${EGG_FILE}
+@comment $NetBSD: PLIST,v 1.5 2019/10/31 10:24:52 adam Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
 ${PYSITELIB}/joblib/__init__.py
 ${PYSITELIB}/joblib/__init__.pyc
 ${PYSITELIB}/joblib/__init__.pyo
@@ -45,6 +48,9 @@
 ${PYSITELIB}/joblib/externals/cloudpickle/cloudpickle.py
 ${PYSITELIB}/joblib/externals/cloudpickle/cloudpickle.pyc
 ${PYSITELIB}/joblib/externals/cloudpickle/cloudpickle.pyo
+${PYSITELIB}/joblib/externals/cloudpickle/cloudpickle_fast.py
+${PYSITELIB}/joblib/externals/cloudpickle/cloudpickle_fast.pyc
+${PYSITELIB}/joblib/externals/cloudpickle/cloudpickle_fast.pyo
 ${PYSITELIB}/joblib/externals/loky/__init__.py
 ${PYSITELIB}/joblib/externals/loky/__init__.pyc
 ${PYSITELIB}/joblib/externals/loky/__init__.pyo
@@ -99,9 +105,9 @@
 ${PYSITELIB}/joblib/externals/loky/backend/reduction.py
 ${PYSITELIB}/joblib/externals/loky/backend/reduction.pyc
 ${PYSITELIB}/joblib/externals/loky/backend/reduction.pyo
-${PYSITELIB}/joblib/externals/loky/backend/semaphore_tracker.py
-${PYSITELIB}/joblib/externals/loky/backend/semaphore_tracker.pyc
-${PYSITELIB}/joblib/externals/loky/backend/semaphore_tracker.pyo
+${PYSITELIB}/joblib/externals/loky/backend/resource_tracker.py
+${PYSITELIB}/joblib/externals/loky/backend/resource_tracker.pyc
+${PYSITELIB}/joblib/externals/loky/backend/resource_tracker.pyo
 ${PYSITELIB}/joblib/externals/loky/backend/semlock.py
 ${PYSITELIB}/joblib/externals/loky/backend/semlock.pyc
 ${PYSITELIB}/joblib/externals/loky/backend/semlock.pyo
diff -r ed004cb514ec -r b8758e214c0d devel/py-joblib/distinfo
--- a/devel/py-joblib/distinfo  Thu Oct 31 10:19:50 2019 +0000
+++ b/devel/py-joblib/distinfo  Thu Oct 31 10:24:52 2019 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.4 2019/02/14 09:01:45 adam Exp $
+$NetBSD: distinfo,v 1.5 2019/10/31 10:24:52 adam Exp $
 
-SHA1 (joblib-0.13.2.tar.gz) = c8aa6b12af1a072e4477623ed488de668ef7c3bf
-RMD160 (joblib-0.13.2.tar.gz) = 64116ec0e9f568c95f1b16cb1c6a1138ad1b35c4
-SHA512 (joblib-0.13.2.tar.gz) = d29c794f6d993bea225af39369228e4950ec970abeb6c82ff69c9db553ce381216258ba96419f7f0d49d0c6ae966a1de9cae8266b14a7416e1aad16e81b1a8a2
-Size (joblib-0.13.2.tar.gz) = 287438 bytes
+SHA1 (joblib-0.14.0.tar.gz) = 5f8231d7dab803b64843aa07b34fc83471125fb5
+RMD160 (joblib-0.14.0.tar.gz) = 22cad237a0f8dca7085ec9d08e91ba0fc5ae1df6
+SHA512 (joblib-0.14.0.tar.gz) = 4fd2d69c75a24608647bee23b71d3f802145b6b399bc9a2e7b8e22fdcc48272c41cc3c42ad4bfec26261226703c48e7f3d64448d578db994c7bd6daf86037c1d
+Size (joblib-0.14.0.tar.gz) = 301462 bytes



Home | Main Index | Thread Index | Old Index