From e7f363750f3ebaf342a8c7e045f82626238a315b8327df5229880f5f43ea95f9 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sat, 16 Oct 2021 21:32:28 +0000 Subject: [PATCH] - update to 1.1.0: * Fix byte order inconsistency issue during deserialization using joblib.load in cross-endian environment: the numpy arrays are now always loaded to use the system byte order, independently of the byte order of the system that serialized the pickle. * Fix joblib.Memory bug with the ignore parameter when the cached function is a decorated function. * Fix joblib.Memory to properly handle caching for functions defined interactively in a IPython session or in Jupyter notebook cell. * Update vendored loky (from version 2.9 to 3.0) and cloudpickle (from version 1.6 to 2.0) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-joblib?expand=0&rev=49 --- joblib-1.0.1.tar.gz | 3 --- joblib-1.1.0.tar.gz | 3 +++ python-joblib.changes | 15 +++++++++++++++ python-joblib.spec | 4 ++-- 4 files changed, 20 insertions(+), 5 deletions(-) delete mode 100644 joblib-1.0.1.tar.gz create mode 100644 joblib-1.1.0.tar.gz diff --git a/joblib-1.0.1.tar.gz b/joblib-1.0.1.tar.gz deleted file mode 100644 index 224b271..0000000 --- a/joblib-1.0.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9c17567692206d2f3fb9ecf5e991084254fe631665c450b443761c4186a613f7 -size 316131 diff --git a/joblib-1.1.0.tar.gz b/joblib-1.1.0.tar.gz new file mode 100644 index 0000000..220a876 --- /dev/null +++ b/joblib-1.1.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4158fcecd13733f8be669be0683b96ebdbbd38d23559f54dca7205aea1bf1e35 +size 2063601 diff --git a/python-joblib.changes b/python-joblib.changes index 1879ee9..6837f0a 100644 --- a/python-joblib.changes +++ b/python-joblib.changes @@ -1,3 +1,18 @@ +------------------------------------------------------------------- +Sat Oct 16 21:31:20 UTC 2021 - Dirk Müller + +- update to 1.1.0: + * Fix byte order inconsistency issue during deserialization using joblib.load + in cross-endian environment: the numpy arrays are now always loaded to use + the system byte order, independently of the byte order of the system that + serialized the pickle. + * Fix joblib.Memory bug with the ignore parameter when the cached function is a + decorated function. + * Fix joblib.Memory to properly handle caching for functions defined + interactively in a IPython session or in Jupyter notebook cell. + * Update vendored loky (from version 2.9 to 3.0) and cloudpickle (from + version 1.6 to 2.0) + ------------------------------------------------------------------- Mon Feb 15 23:26:21 UTC 2021 - Ben Greiner diff --git a/python-joblib.spec b/python-joblib.spec index bcb1789..0966187 100644 --- a/python-joblib.spec +++ b/python-joblib.spec @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %global skip_python2 1 Name: python-joblib -Version: 1.0.1 +Version: 1.1.0 Release: 0 Summary: Module for using Python functions as pipeline jobs License: BSD-3-Clause @@ -105,7 +105,7 @@ DISABLED_TESTS="test_hash_numpy_noncontiguous or \ test_parallel_call_cached_function_defined_in_jupyter" if [ $(python3 -c 'import sys; print(sys.byteorder)') != "little" ]; then DISABLED_TESTS+=" or test_joblib_pickle_across_python_versions" -fi +fi %pytest -k "not ($DISABLED_TESTS)" %files %{python_files}