Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python310-joblib | Distribution: openSUSE:Factory:zSystems |
Version: 1.4.2 | Vendor: openSUSE |
Release: 1.1 | Build date: Thu May 9 10:36:55 2024 |
Group: Unspecified | Build host: reproducible |
Size: 1879193 | Source RPM: python-joblib-1.4.2-1.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://github.com/joblib/joblib | |
Summary: Module for using Python functions as pipeline jobs |
Joblib is a set of tools to provide lightweight pipelining in Python. In particular, joblib offers: 1. transparent disk-caching of the output values and lazy re-evaluation (memoize pattern) 2. parallel computing 3. logging and tracing of the execution Joblib can handle large data and has specific optimizations for `numpy` arrays.
BSD-3-Clause
* Thu May 09 2024 Dirk Müller <dmueller@suse.com> - update to 1.4.2: * Due to maintenance issues, 1.4.1 was not valid and we bumped the version to 1.4.2 * Fix a backward incompatible change in MemorizedFunc.call which needs to return the metadata. Also make sure that NotMemorizedFunc.call return an empty dict for metadata for consistency. https://github.com/joblib/joblib/pull/1576 * Sat Apr 20 2024 Dirk Müller <dmueller@suse.com> - update to 1.4.0: * Allow caching co-routines with Memory.cache. * Try to cast n_jobs to int in parallel and raise an error if it fails. This means that n_jobs=2.3 will now result in effective_n_jobs=2 instead of failing. * Ensure that errors in the task generator given to Parallel's call are raised in the results consumming thread. * Adjust codebase to NumPy 2.0 by changing np.NaN to np.nan and importing byte_bounds from np.lib.array_utils. * The parameter return_as in joblib.Parallel can now be set to generator_unordered. In this case the results will be returned in the order of task completion rather than the order of submission. * dask backend now supports return_as=generator and return_as=generator_unordered. * Vendor cloudpickle 3.0.0 and end support for Python 3.7 which has reached end of life. - drop avoid-deprecated-ast.patch (upstream) * Tue Nov 28 2023 Steve Kowalik <steven.kowalik@suse.com> - Add patch avoid-deprecated-ast.patch: * Avoid deprecated ast classes. - Add patch also-filter-new-fork-warning.patch: * Filter DeprecationWarning due to calling fork() with multiprocessing. - Switch to pyproject macros. * Sat Nov 25 2023 Dirk Müller <dmueller@suse.com> - update to 1.3.2: * FIX treat n_jobs=None as if left to its default value * FIX Init logger parent class in Parallel * MNT remove unnecessary .bck file * MTN adjust test regex for Python 3.12 improved error message * DOC add public documentation for parallel_backend * FIX flake8 new E721: type comparison * Ensure native byte order for memmap. * Drop runtime dependency on `distutils` * Add environment variable to change default parallel backend * Fix memmapping_reducer when 'os' has no attribute 'statvfs' * Move the metadata into `pyproject.toml` * TST Close client in test_pickle_in_socket * Do not swallow PicklingError * FIX Avoid collisions when caching nested functions * FIX heisenfailure in doc/memory.rst * MAINT Explicit support for Python 3.11 * MNT Use faulthandler rather than custom autokill logic * BENCH add benchmark script for n_jobs=1 * TST Fix test_nested_parallel_warnings_parent_backend for Python nogil * TST Fix test_memmapping for Python nogil * MAINT Clean deprecations * ENH make temp resource cleanup safer * MAINT Simplify warning in `_persist_input` * MNT Use full flake8 rather than flake8_diff.sh * Update Dask backend * FIX upload to codecov * MTN vendor loky 3.4.0 * MTN skip thread_bomb mitigation test on PyPy for now * High verbosity mode that prints arguments, hash and store location. * DBG try to debug the thread_bomb_mitigation test * FEA return generator, #588 stripped of unrelated changes for minimal diff review * BENCH scaling of a GridSearch with n_jobs * CLN make generator exit thread safe * FEA parallel_config context manager to allow more fine- grained control * MAINT: Be nitpicky about docs * CLN tidy logger * Give Memory.reduce_size() `items_limit` and `age_limit` options * CLN deprecate bytes_limit from Memory * FIX doc building failing download * Document parallel_config * ENH add cache_validation_callback in Memory * DOC example data DL from GH * merge all configs in pyproject.toml * fix double repeated word typos * DOC reference parallel_config instead of parallel_backend * `return_generator={True,False}` -> `return_as={'list','generator'}` * Sat Jun 10 2023 ecsos <ecsos@opensuse.org> - Add %{?sle15_python_module_pythons} * Tue Oct 11 2022 Ben Greiner <code@bnavigator.de> - Update to 1.2.0 (CVE-2022-21797, bsc#1204232) * Fix a security issue where eval(pre_dispatch) could potentially run arbitrary code. Now only basic numerics are supported. [#1327] * Make sure that joblib works even when multiprocessing is not available, for instance with Pyodide #1256 * Avoid unnecessary warnings when workers and main process delete the temporary memmap folder contents concurrently. #1263 * Vendor loky 3.1.0 with several fixes to more robustly forcibly terminate worker processes in case of a crash. #1269 * Fix memory alignment bug for pickles containing numpy arrays. This is especially important when loading the pickle with mmap_mode != None as the resulting numpy.memmap object would not be able to correct the misalignment without performing a memory copy. This bug would cause invalid computation and segmentation faults with native code that would directly access the underlying data buffer of a numpy array, for instance C/C++/Cython code compiled with older GCC versions or some old OpenBLAS written in platform specific assembly. #1254 * Vendor cloudpickle 2.2.0 which adds support for PyPy 3.8+. * Vendor loky 3.3.0 which fixes a bug with leaking processes in case of nested loky parallel calls and more reliability spawn the correct number of reusable workers. - Drop support-setuptools-62.patch * Wed Jul 20 2022 Steve Kowalik <steven.kowalik@suse.com> - Add patch support-setuptools-62.patch: * Support setuptools >= 62 by handling more than one warning in a test case. * Sat Oct 16 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 2021 Ben Greiner <code@bnavigator.de> - Update to 1.0.1 * dask: avoid redundant scattering of large arguments to make a more efficient use of the network resources and avoid crashing dask with "OSError: [Errno 55] No buffer space available" or "ConnectionResetError: [Errno 104] connection reset by peer". - Changees in 1.0.0 * Make joblib.hash and joblib.Memory caching system compatible with numpy >= 1.20.0. Also make it explicit in the documentation that users should now expect to have their joblib. Memory cache invalidated when either joblib or a third party library involved in the cached values definition is upgraded. In particular, users updating joblib to a release that includes this fix will see their previous cache invalidated if they contained reference to numpy objects. * Remove deprecated check_pickle argument in delayed. - Changes in 0.17.0 * Fix a spurious invalidation of Memory.cache'd functions called with Parallel under Jupyter or IPython. * Bump vendored loky to 2.9.0 and cloudpickle to 1.6.0. In particular this fixes a problem to add compat for Python 3.9. - Don't require optional NumPy for python36 tests in TW, because NumPy 1.20 dropped support for Python 3.6 (NEP 29) - Drop joblib-disable-unrelialble-tests.patch, they are already used in pytest deselection parameter. * Do the same for disable_test_on_big_endian.patch. * Sun Dec 06 2020 Benjamin Greiner <code@bnavigator.de> - BuildRequire threadpoolctl for all python3 flavors gh#openSUSE/python-rpm-macros#66
/usr/lib/python3.10/site-packages/joblib /usr/lib/python3.10/site-packages/joblib-1.4.2.dist-info /usr/lib/python3.10/site-packages/joblib-1.4.2.dist-info/INSTALLER /usr/lib/python3.10/site-packages/joblib-1.4.2.dist-info/LICENSE.txt /usr/lib/python3.10/site-packages/joblib-1.4.2.dist-info/METADATA /usr/lib/python3.10/site-packages/joblib-1.4.2.dist-info/RECORD /usr/lib/python3.10/site-packages/joblib-1.4.2.dist-info/REQUESTED /usr/lib/python3.10/site-packages/joblib-1.4.2.dist-info/WHEEL /usr/lib/python3.10/site-packages/joblib-1.4.2.dist-info/top_level.txt /usr/lib/python3.10/site-packages/joblib/__init__.py /usr/lib/python3.10/site-packages/joblib/__pycache__ /usr/lib/python3.10/site-packages/joblib/__pycache__/__init__.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/__init__.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/_cloudpickle_wrapper.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/_cloudpickle_wrapper.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/_dask.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/_dask.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/_memmapping_reducer.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/_memmapping_reducer.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/_multiprocessing_helpers.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/_multiprocessing_helpers.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/_parallel_backends.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/_parallel_backends.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/_store_backends.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/_store_backends.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/_utils.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/_utils.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/backports.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/backports.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/compressor.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/compressor.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/disk.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/disk.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/executor.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/executor.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/func_inspect.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/func_inspect.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/hashing.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/hashing.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/logger.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/logger.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/memory.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/memory.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/numpy_pickle.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/numpy_pickle.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/numpy_pickle_compat.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/numpy_pickle_compat.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/numpy_pickle_utils.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/numpy_pickle_utils.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/parallel.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/parallel.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/pool.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/pool.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/testing.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/__pycache__/testing.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/_cloudpickle_wrapper.py /usr/lib/python3.10/site-packages/joblib/_dask.py /usr/lib/python3.10/site-packages/joblib/_memmapping_reducer.py /usr/lib/python3.10/site-packages/joblib/_multiprocessing_helpers.py /usr/lib/python3.10/site-packages/joblib/_parallel_backends.py /usr/lib/python3.10/site-packages/joblib/_store_backends.py /usr/lib/python3.10/site-packages/joblib/_utils.py /usr/lib/python3.10/site-packages/joblib/backports.py /usr/lib/python3.10/site-packages/joblib/compressor.py /usr/lib/python3.10/site-packages/joblib/disk.py /usr/lib/python3.10/site-packages/joblib/executor.py /usr/lib/python3.10/site-packages/joblib/externals /usr/lib/python3.10/site-packages/joblib/externals/__init__.py /usr/lib/python3.10/site-packages/joblib/externals/__pycache__ /usr/lib/python3.10/site-packages/joblib/externals/__pycache__/__init__.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/__pycache__/__init__.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/cloudpickle /usr/lib/python3.10/site-packages/joblib/externals/cloudpickle/__init__.py /usr/lib/python3.10/site-packages/joblib/externals/cloudpickle/__pycache__ /usr/lib/python3.10/site-packages/joblib/externals/cloudpickle/__pycache__/__init__.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/cloudpickle/__pycache__/__init__.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/cloudpickle/__pycache__/cloudpickle.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/cloudpickle/__pycache__/cloudpickle.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/cloudpickle/__pycache__/cloudpickle_fast.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/cloudpickle/__pycache__/cloudpickle_fast.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/cloudpickle/cloudpickle.py /usr/lib/python3.10/site-packages/joblib/externals/cloudpickle/cloudpickle_fast.py /usr/lib/python3.10/site-packages/joblib/externals/loky /usr/lib/python3.10/site-packages/joblib/externals/loky/__init__.py /usr/lib/python3.10/site-packages/joblib/externals/loky/__pycache__ /usr/lib/python3.10/site-packages/joblib/externals/loky/__pycache__/__init__.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/__pycache__/__init__.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/__pycache__/_base.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/__pycache__/_base.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/__pycache__/cloudpickle_wrapper.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/__pycache__/cloudpickle_wrapper.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/__pycache__/initializers.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/__pycache__/initializers.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/__pycache__/process_executor.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/__pycache__/process_executor.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/__pycache__/reusable_executor.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/__pycache__/reusable_executor.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/_base.py /usr/lib/python3.10/site-packages/joblib/externals/loky/backend /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__init__.py /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__ /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/__init__.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/__init__.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/_posix_reduction.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/_posix_reduction.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/_win_reduction.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/_win_reduction.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/context.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/context.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/fork_exec.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/fork_exec.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/popen_loky_posix.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/popen_loky_posix.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/popen_loky_win32.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/popen_loky_win32.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/process.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/process.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/queues.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/queues.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/reduction.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/reduction.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/resource_tracker.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/resource_tracker.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/spawn.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/spawn.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/synchronize.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/synchronize.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/utils.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/__pycache__/utils.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/_posix_reduction.py /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/_win_reduction.py /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/context.py /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/fork_exec.py /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/popen_loky_posix.py /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/popen_loky_win32.py /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/process.py /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/queues.py /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/reduction.py /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/resource_tracker.py /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/spawn.py /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/synchronize.py /usr/lib/python3.10/site-packages/joblib/externals/loky/backend/utils.py /usr/lib/python3.10/site-packages/joblib/externals/loky/cloudpickle_wrapper.py /usr/lib/python3.10/site-packages/joblib/externals/loky/initializers.py /usr/lib/python3.10/site-packages/joblib/externals/loky/process_executor.py /usr/lib/python3.10/site-packages/joblib/externals/loky/reusable_executor.py /usr/lib/python3.10/site-packages/joblib/func_inspect.py /usr/lib/python3.10/site-packages/joblib/hashing.py /usr/lib/python3.10/site-packages/joblib/logger.py /usr/lib/python3.10/site-packages/joblib/memory.py /usr/lib/python3.10/site-packages/joblib/numpy_pickle.py /usr/lib/python3.10/site-packages/joblib/numpy_pickle_compat.py /usr/lib/python3.10/site-packages/joblib/numpy_pickle_utils.py /usr/lib/python3.10/site-packages/joblib/parallel.py /usr/lib/python3.10/site-packages/joblib/pool.py /usr/lib/python3.10/site-packages/joblib/test /usr/lib/python3.10/site-packages/joblib/test/__init__.py /usr/lib/python3.10/site-packages/joblib/test/__pycache__ /usr/lib/python3.10/site-packages/joblib/test/__pycache__/__init__.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/__init__.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/common.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/common.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_backports.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_backports.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_cloudpickle_wrapper.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_cloudpickle_wrapper.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_config.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_config.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_dask.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_dask.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_disk.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_disk.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_func_inspect.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_func_inspect.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_func_inspect_special_encoding.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_func_inspect_special_encoding.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_hashing.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_hashing.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_init.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_init.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_logger.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_logger.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_memmapping.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_memmapping.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_memory.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_memory.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_memory_async.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_memory_async.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_missing_multiprocessing.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_missing_multiprocessing.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_module.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_module.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_numpy_pickle.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_numpy_pickle.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_numpy_pickle_compat.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_numpy_pickle_compat.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_numpy_pickle_utils.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_numpy_pickle_utils.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_parallel.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_parallel.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_store_backends.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_store_backends.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_testing.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_testing.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_utils.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/test_utils.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/testutils.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/__pycache__/testutils.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/common.py /usr/lib/python3.10/site-packages/joblib/test/data /usr/lib/python3.10/site-packages/joblib/test/data/__init__.py /usr/lib/python3.10/site-packages/joblib/test/data/__pycache__ /usr/lib/python3.10/site-packages/joblib/test/data/__pycache__/__init__.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/data/__pycache__/__init__.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/data/__pycache__/create_numpy_pickle.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/joblib/test/data/__pycache__/create_numpy_pickle.cpython-310.pyc /usr/lib/python3.10/site-packages/joblib/test/data/create_numpy_pickle.py /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_compressed_pickle_py27_np16.gz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_compressed_pickle_py27_np17.gz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_compressed_pickle_py33_np18.gz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_compressed_pickle_py34_np19.gz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_compressed_pickle_py35_np19.gz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py27_np17.pkl /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py27_np17.pkl.bz2 /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py27_np17.pkl.gzip /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py27_np17.pkl.lzma /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py27_np17.pkl.xz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py33_np18.pkl /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py33_np18.pkl.bz2 /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py33_np18.pkl.gzip /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py33_np18.pkl.lzma /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py33_np18.pkl.xz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py34_np19.pkl /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py34_np19.pkl.bz2 /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py34_np19.pkl.gzip /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py34_np19.pkl.lzma /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py34_np19.pkl.xz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py35_np19.pkl /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py35_np19.pkl.bz2 /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py35_np19.pkl.gzip /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py35_np19.pkl.lzma /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.10.0_pickle_py35_np19.pkl.xz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.11.0_compressed_pickle_py36_np111.gz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.11.0_pickle_py36_np111.pkl /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.11.0_pickle_py36_np111.pkl.bz2 /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.11.0_pickle_py36_np111.pkl.gzip /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.11.0_pickle_py36_np111.pkl.lzma /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.11.0_pickle_py36_np111.pkl.xz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.8.4_compressed_pickle_py27_np17.gz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_compressed_pickle_py27_np16.gz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_compressed_pickle_py27_np17.gz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_compressed_pickle_py34_np19.gz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_compressed_pickle_py35_np19.gz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np16.pkl /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np16.pkl_01.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np16.pkl_02.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np16.pkl_03.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np16.pkl_04.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np17.pkl /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np17.pkl_01.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np17.pkl_02.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np17.pkl_03.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np17.pkl_04.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py33_np18.pkl /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py33_np18.pkl_01.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py33_np18.pkl_02.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py33_np18.pkl_03.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py33_np18.pkl_04.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py34_np19.pkl /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py34_np19.pkl_01.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py34_np19.pkl_02.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py34_np19.pkl_03.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py34_np19.pkl_04.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py35_np19.pkl /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py35_np19.pkl_01.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py35_np19.pkl_02.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py35_np19.pkl_03.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.2_pickle_py35_np19.pkl_04.npy /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.4.dev0_compressed_cache_size_pickle_py35_np19.gz /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.4.dev0_compressed_cache_size_pickle_py35_np19.gz_01.npy.z /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.4.dev0_compressed_cache_size_pickle_py35_np19.gz_02.npy.z /usr/lib/python3.10/site-packages/joblib/test/data/joblib_0.9.4.dev0_compressed_cache_size_pickle_py35_np19.gz_03.npy.z /usr/lib/python3.10/site-packages/joblib/test/test_backports.py /usr/lib/python3.10/site-packages/joblib/test/test_cloudpickle_wrapper.py /usr/lib/python3.10/site-packages/joblib/test/test_config.py /usr/lib/python3.10/site-packages/joblib/test/test_dask.py /usr/lib/python3.10/site-packages/joblib/test/test_disk.py /usr/lib/python3.10/site-packages/joblib/test/test_func_inspect.py /usr/lib/python3.10/site-packages/joblib/test/test_func_inspect_special_encoding.py /usr/lib/python3.10/site-packages/joblib/test/test_hashing.py /usr/lib/python3.10/site-packages/joblib/test/test_init.py /usr/lib/python3.10/site-packages/joblib/test/test_logger.py /usr/lib/python3.10/site-packages/joblib/test/test_memmapping.py /usr/lib/python3.10/site-packages/joblib/test/test_memory.py /usr/lib/python3.10/site-packages/joblib/test/test_memory_async.py /usr/lib/python3.10/site-packages/joblib/test/test_missing_multiprocessing.py /usr/lib/python3.10/site-packages/joblib/test/test_module.py /usr/lib/python3.10/site-packages/joblib/test/test_numpy_pickle.py /usr/lib/python3.10/site-packages/joblib/test/test_numpy_pickle_compat.py /usr/lib/python3.10/site-packages/joblib/test/test_numpy_pickle_utils.py /usr/lib/python3.10/site-packages/joblib/test/test_parallel.py /usr/lib/python3.10/site-packages/joblib/test/test_store_backends.py /usr/lib/python3.10/site-packages/joblib/test/test_testing.py /usr/lib/python3.10/site-packages/joblib/test/test_utils.py /usr/lib/python3.10/site-packages/joblib/test/testutils.py /usr/lib/python3.10/site-packages/joblib/testing.py /usr/share/doc/packages/python310-joblib /usr/share/doc/packages/python310-joblib/README.rst /usr/share/licenses/python310-joblib /usr/share/licenses/python310-joblib/LICENSE.txt
Generated by rpm2html 1.8.1
Fabrice Bellet, Thu Nov 7 00:41:23 2024