mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Changelog: ============ -Fix compatibility with python 3.7 by vendor loky 3.4.1 which is compatible with this version. #1472 -Ensure native byte order for memmap arrays in joblib.load. #1353 -Add ability to change default Parallel backend in tests by setting the JOBLIB_TESTS_DEFAULT_PARALLEL_BACKEND environment variable. #1356 -Fix temporary folder creation in joblib.Parallel on Linux subsystems on Windows which do have /dev/shm but don't have the os.statvfs function #1353 -Drop runtime dependency on distutils. distutils is going away in Python 3.12 and is deprecated from Python 3.10 onwards. -A warning is raised when a pickling error occurs during caching operations. -Avoid (module, name) collisions when caching nested functions. -Add cache_validation_callback in :meth:'joblib.Memory.cache', to allow custom cache invalidation based on the metadata of the function call. #1149 -Add a return_as parameter for Parallel, that enables consuming results asynchronously. #1393, #1458 -Improve the behavior of joblib for n_jobs=1, with simplified tracebacks and more efficient running time. #1393 -Add the parallel_config context manager to allow for more fine-grained control over the backend configuration. -Add items_limit and age_limit in :meth:'joblib.Memory.reduce_size' to make it easy to limit the number of items and remove items that have not been accessed for a long time in the cache. #1200 -Deprecate bytes_limit in Memory as this is not automatically enforced, the limit can be directly passed to :meth:'joblib.Memory.reduce_size' which needs to be called to actually enforce the limit. #1447 -Vendor loky 3.4.0 which includes various fixes. #1422 -Various updates to the documentation and to benchmarking tools. -Move project metadata to pyproject.toml. #1382, #1433 -Add more tests to improve python nogil support. #1394, #1395 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
17 lines
460 B
BlitzBasic
17 lines
460 B
BlitzBasic
SUMMARY = "Joblib is a set of tools to provide lightweight pipelining in Python."
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2e481820abf0a70a18011a30153df066"
|
|
|
|
inherit setuptools3 pypi
|
|
|
|
SRC_URI[sha256sum] = "1f937906df65329ba98013dc9692fe22a4c5e4a648112de500508b18a21b41e3"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-asyncio \
|
|
python3-distutils \
|
|
python3-json \
|
|
python3-multiprocessing \
|
|
python3-pprint \
|
|
python3-pydoc \
|
|
"
|