Source-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.15.0
details: https://anonhg.NetBSD.org/pkgsrc/rev/f2ca15ebdb7f
branches: trunk
changeset: 431811:f2ca15ebdb7f
user: adam <adam%pkgsrc.org@localhost>
date: Sat May 16 17:20:21 2020 +0000
description:
py-joblib: updated to 0.15.0
Release 0.15.0
- Drop support for Python 2 and Python 3.5. All objects in
``joblib.my_exceptions`` and ``joblib.format_stack`` are now deprecated and
will be removed in joblib 0.16. Note that no deprecation warning will be
raised for these objects Python < 3.7.
- Fix many bugs related to the temporary files and folder generated when
automatically memory mapping large numpy arrays for efficient inter-process
communication. In particular, this would cause `PermissionError` exceptions
to be raised under Windows and large leaked files in `/dev/shm` under Linux
in case of crash.
- Make the dask backend collect results as soon as they complete
leading to a performance improvement:
- Fix the number of jobs reported by ``effective_n_jobs`` when ``n_jobs=None``
called in a parallel backend context.
- Upgraded vendored cloupickle to 1.4.1 and loky to 2.8.0. This allows for
Parallel calls of dynamically defined functions with type annotations
in particular.
diffstat:
devel/py-joblib/Makefile | 11 ++++++-----
devel/py-joblib/PLIST | 23 +++++++++++++----------
devel/py-joblib/distinfo | 10 +++++-----
3 files changed, 24 insertions(+), 20 deletions(-)
diffs (108 lines):
diff -r 6ef440bde41b -r f2ca15ebdb7f devel/py-joblib/Makefile
--- a/devel/py-joblib/Makefile Sat May 16 17:17:51 2020 +0000
+++ b/devel/py-joblib/Makefile Sat May 16 17:20:21 2020 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2019/12/14 10:54:16 adam Exp $
+# $NetBSD: Makefile,v 1.7 2020/05/16 17:20:21 adam Exp $
-DISTNAME= joblib-0.14.1
+DISTNAME= joblib-0.15.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=j/joblib/}
@@ -10,12 +10,13 @@
COMMENT= Set of tools to provide lightweight pipelining
LICENSE= modified-bsd
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
USE_LANGUAGES= # none
-do-test:
- cd ${WRKSRC}/joblib && pytest-${PYVERSSUFFIX}
+PYSETUPTESTTARGET= pytest
+
+PYTHON_VERSIONS_INCOMPATIBLE= 27
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
diff -r 6ef440bde41b -r f2ca15ebdb7f devel/py-joblib/PLIST
--- a/devel/py-joblib/PLIST Sat May 16 17:17:51 2020 +0000
+++ b/devel/py-joblib/PLIST Sat May 16 17:20:21 2020 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.5 2019/10/31 10:24:52 adam Exp $
+@comment $NetBSD: PLIST,v 1.6 2020/05/16 17:20:21 adam Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -6,18 +6,18 @@
${PYSITELIB}/joblib/__init__.py
${PYSITELIB}/joblib/__init__.pyc
${PYSITELIB}/joblib/__init__.pyo
-${PYSITELIB}/joblib/_compat.py
-${PYSITELIB}/joblib/_compat.pyc
-${PYSITELIB}/joblib/_compat.pyo
${PYSITELIB}/joblib/_dask.py
${PYSITELIB}/joblib/_dask.pyc
${PYSITELIB}/joblib/_dask.pyo
+${PYSITELIB}/joblib/_deprecated_format_stack.py
+${PYSITELIB}/joblib/_deprecated_format_stack.pyc
+${PYSITELIB}/joblib/_deprecated_format_stack.pyo
+${PYSITELIB}/joblib/_deprecated_my_exceptions.py
+${PYSITELIB}/joblib/_deprecated_my_exceptions.pyc
+${PYSITELIB}/joblib/_deprecated_my_exceptions.pyo
${PYSITELIB}/joblib/_memmapping_reducer.py
${PYSITELIB}/joblib/_memmapping_reducer.pyc
${PYSITELIB}/joblib/_memmapping_reducer.pyo
-${PYSITELIB}/joblib/_memory_helpers.py
-${PYSITELIB}/joblib/_memory_helpers.pyc
-${PYSITELIB}/joblib/_memory_helpers.pyo
${PYSITELIB}/joblib/_multiprocessing_helpers.py
${PYSITELIB}/joblib/_multiprocessing_helpers.pyc
${PYSITELIB}/joblib/_multiprocessing_helpers.pyo
@@ -179,9 +179,6 @@
${PYSITELIB}/joblib/test/data/joblib_0.10.0_compressed_pickle_py33_np18.gz
${PYSITELIB}/joblib/test/data/joblib_0.10.0_compressed_pickle_py34_np19.gz
${PYSITELIB}/joblib/test/data/joblib_0.10.0_compressed_pickle_py35_np19.gz
-${PYSITELIB}/joblib/test/data/joblib_0.10.0_pickle_py27_np16.pkl
-${PYSITELIB}/joblib/test/data/joblib_0.10.0_pickle_py27_np16.pkl.bz2
-${PYSITELIB}/joblib/test/data/joblib_0.10.0_pickle_py27_np16.pkl.gzip
${PYSITELIB}/joblib/test/data/joblib_0.10.0_pickle_py27_np17.pkl
${PYSITELIB}/joblib/test/data/joblib_0.10.0_pickle_py27_np17.pkl.bz2
${PYSITELIB}/joblib/test/data/joblib_0.10.0_pickle_py27_np17.pkl.gzip
@@ -248,6 +245,9 @@
${PYSITELIB}/joblib/test/test_dask.py
${PYSITELIB}/joblib/test/test_dask.pyc
${PYSITELIB}/joblib/test/test_dask.pyo
+${PYSITELIB}/joblib/test/test_deprecated_objects.py
+${PYSITELIB}/joblib/test/test_deprecated_objects.pyc
+${PYSITELIB}/joblib/test/test_deprecated_objects.pyo
${PYSITELIB}/joblib/test/test_disk.py
${PYSITELIB}/joblib/test/test_disk.pyc
${PYSITELIB}/joblib/test/test_disk.pyo
@@ -299,6 +299,9 @@
${PYSITELIB}/joblib/test/test_testing.py
${PYSITELIB}/joblib/test/test_testing.pyc
${PYSITELIB}/joblib/test/test_testing.pyo
+${PYSITELIB}/joblib/test/testutils.py
+${PYSITELIB}/joblib/test/testutils.pyc
+${PYSITELIB}/joblib/test/testutils.pyo
${PYSITELIB}/joblib/testing.py
${PYSITELIB}/joblib/testing.pyc
${PYSITELIB}/joblib/testing.pyo
diff -r 6ef440bde41b -r f2ca15ebdb7f devel/py-joblib/distinfo
--- a/devel/py-joblib/distinfo Sat May 16 17:17:51 2020 +0000
+++ b/devel/py-joblib/distinfo Sat May 16 17:20:21 2020 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.6 2019/12/14 10:54:16 adam Exp $
+$NetBSD: distinfo,v 1.7 2020/05/16 17:20:21 adam Exp $
-SHA1 (joblib-0.14.1.tar.gz) = 8657d2fed4d5ebdcb6d62b1a77cbe7f56d93d722
-RMD160 (joblib-0.14.1.tar.gz) = 2229a675e794985fb2396ca5a4c50497da71f605
-SHA512 (joblib-0.14.1.tar.gz) = fa3807ea0c746b6e229c1b2f1451d10526bfbed542f5e503ae9ad396d61b8a67e1057feb36775545816f040925169555fd20b880e955983a09f3aa80286330c8
-Size (joblib-0.14.1.tar.gz) = 299621 bytes
+SHA1 (joblib-0.15.0.tar.gz) = e7980559f139599787a74aeffdadec42d6564a0b
+RMD160 (joblib-0.15.0.tar.gz) = 0ffdcd945f6a5dcd4b1c3459152d099777af11d2
+SHA512 (joblib-0.15.0.tar.gz) = 4a24e7efb43b344b721aada691f0569a2941d69aa86bb2ae21c0f37fdf8440619a2fbe97cbb1bc0259b4fa54e70f26bcb4a67b51a69be5aaa86dfde485fc8085
+Size (joblib-0.15.0.tar.gz) = 347231 bytes
Home |
Main Index |
Thread Index |
Old Index