14
0
forked from pool/python-joblib

- 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
This commit is contained in:
2021-10-16 21:32:28 +00:00
committed by Git OBS Bridge
parent 3ffc59f69d
commit e7f363750f
4 changed files with 20 additions and 5 deletions

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Sat Oct 16 21:31:20 UTC 2021 - Dirk Müller <dmueller@suse.com>
- 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 <code@bnavigator.de>