Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python2-joblib-0.14.1-lp152.1.1 RPM for noarch

From OpenSuSE Leap 15.2 for noarch

Name: python2-joblib Distribution: openSUSE Leap 15.2
Version: 0.14.1 Vendor: openSUSE
Release: lp152.1.1 Build date: Wed Mar 25 21:53:06 2020
Group: Development/Languages/Python Build host: goat03
Size: 1922495 Source RPM: python-joblib-0.14.1-lp152.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.

Provides

Requires

License

BSD-3-Clause

Changelog

* Thu Mar 05 2020 pgajdos@suse.com
  - version update to 0.14.1
    - Configure the loky workers' environment to mitigate oversubsription with
      nested multi-threaded code in the following case:
    - allow for a suitable number of threads for numba (``NUMBA_NUM_THREADS``);
    - enable Interprocess Communication for scheduler coordination when the
      nested code uses Threading Building Blocks (TBB) (``ENABLE_IPC=1``)
      https://github.com/joblib/joblib/pull/951
    - Fix a regression where the loky backend was not reusing previously
      spawned workers.
      https://github.com/joblib/joblib/pull/968
    - Revert https://github.com/joblib/joblib/pull/847 to avoid using
      `pkg_resources` that introduced a performance regression under Windows:
      https://github.com/joblib/joblib/issues/965
    - Improved the load balancing between workers to avoid stranglers caused by an
      excessively large batch size when the task duration is varying significantly
      (because of the combined use of ``joblib.Parallel`` and ``joblib.Memory``
      with a partially warmed cache for instance).
      https://github.com/joblib/joblib/pull/899
    - Add official support for Python 3.8: fixed protocol number in `Hasher`
      and updated tests.
    - Fix a deadlock when using the dask backend (when scattering large numpy
      arrays).
      https://github.com/joblib/joblib/pull/914
    - Warn users that they should never use `joblib.load` with files from
      untrusted sources. Fix security related API change introduced in numpy
      1.6.3 that would prevent using joblib with recent numpy versions.
      https://github.com/joblib/joblib/pull/879
    - Upgrade to cloudpickle 1.1.1 that add supports for the upcoming
      Python 3.8 release among other things.
      https://github.com/joblib/joblib/pull/878
    - Fix semaphore availability checker to avoid spawning resource trackers
      on module import.
      https://github.com/joblib/joblib/pull/893
    - Fix the oversubscription protection to only protect against nested
      `Parallel` calls. This allows `joblib` to be run in background threads.
      https://github.com/joblib/joblib/pull/934
    - Fix `ValueError` (negative dimensions) when pickling large numpy arrays on
      Windows.
      https://github.com/joblib/joblib/pull/920
    - Upgrade to loky 2.6.0 that add supports for the setting environment variables
      in child before loading any module.
      https://github.com/joblib/joblib/pull/940
    - Fix the oversubscription protection for native libraries using threadpools
      (OpenBLAS, MKL, Blis and OpenMP runtimes).
      The maximal number of threads is can now be set in children using the
      ``inner_max_num_threads`` in ``parallel_backend``. It defaults to
      ``cpu_count() // n_jobs``.
      https://github.com/joblib/joblib/pull/940
  - deleted patches
    - numpy16.patch (upstreamed)
* Tue May 28 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Switch to %pytest
  - Add patch to work well with new numpy:
    * numpy16.patch
* Tue Mar 26 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 0.13.2:
    * Upgrade to cloudpickle 0.8.0
    * Add a non-regression test related to joblib issues #836 and #833, reporting that cloudpickle versions between 0.5.4 and 0.7 introduced a bug where global variables changes in a parent process between two calls to joblib.Parallel would not be propagated into the workers
* Thu Mar 07 2019 John Vandenberg <jayvdb@gmail.com>
  - Remove no longer necessary pytest argument
    - k 'not test_no_blas_crash_or_freeze_with_subprocesses'
* Tue Jan 29 2019 mcepl@suse.com
  - Update to Release 0.13.1:
    * Memory now accepts pathlib.Path objects as ``location``
      parameter. Also, a warning is raised if the returned backend
      is None while ``location`` is not None.
    * Make ``Parallel`` raise an informative ``RuntimeError`` when
      the active parallel backend has zero worker.
    * Make the ``DaskDistributedBackend`` wait for workers before
      trying to schedule work. This is useful in particular when
      the workers are provisionned dynamically but provisionning is
      not immediate (for instance using Kubernetes, Yarn or an HPC
      job queue).
* Mon Jan 07 2019 Todd R <toddrme2178@gmail.com>
  - update to Release 0.13.0
    * Include loky 2.4.2 with default serialization with ``cloudpickle``.
      This can be tweaked with the environment variable ``LOKY_PICKLER``.
    * Fix nested backend in SequentialBackend to avoid changing the default
      backend to Sequential. (#792)
    * Fix nested_backend behavior to avoid setting the default number of
      workers to -1 when the backend is not dask. (#784)
  - Update to Release 0.12.5
    * Include loky 2.3.1 with better error reporting when a worker is
      abruptly terminated. Also fixes spurious debug output.
    * Include cloudpickle 0.5.6. Fix a bug with the handling of global
      variables by locally defined functions.
  - Update to Release 0.12.4
    * Include loky 2.3.0 with many bugfixes, notably w.r.t. when setting
      non-default multiprocessing contexts. Also include improvement on
      memory management of long running worker processes and fixed issues
      when using the loky backend under PyPy.
    * Raises a more explicit exception when a corrupted MemorizedResult is loaded.
    * Loading a corrupted cached file with mmap mode enabled would
      recompute the results and return them without memmory mapping.
  - Update to Release 0.12.3
    * Fix joblib import setting the global start_method for multiprocessing.
    * Fix MemorizedResult not picklable (#747).
    * Fix Memory, MemorizedFunc and MemorizedResult round-trip pickling +
      unpickling (#746).
    * Fixed a regression in Memory when positional arguments are called as
      kwargs several times with different values (#751).
    * Integration of loky 2.2.2 that fixes issues with the selection of the
      default start method and improve the reporting when calling functions
      with arguments that raise an exception when unpickling.
    * Prevent MemorizedFunc.call_and_shelve from loading cached results to
      RAM when not necessary. Results in big performance improvements
  - Update to Release 0.12.2
    * Integrate loky 2.2.0 to fix regression with unpicklable arguments and
      functions reported by users (#723, #643).
    * Loky 2.2.0 also provides a protection against memory leaks long running
      applications when psutil is installed (reported as #721).
    * Joblib now includes the code for the dask backend which has been updated
      to properly handle nested parallelism and data scattering at the same
      time (#722).
    * Restored some private API attribute and arguments
      (`MemorizedResult.argument_hash` and `BatchedCalls.__init__`'s
      `pickle_cache`) for backward compat. (#716, #732).
    * Fix a deprecation warning message (for `Memory`'s `cachedir`) (#720).
* Thu Jan 03 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Disable blas test as it is very flaky outside of x86_64
* Fri Jul 27 2018 jengelh@inai.de
  - Use noun phrase in summary.
* Fri Jul 20 2018 tchvatal@suse.com
  - Enable tests
* Wed Jul 18 2018 arun@gmx.de
  - specfile:
    * remove devel requirement
  - update to version 0.12.1:
    * Make sure that any exception triggered when serializing jobs in
      the queue will be wrapped as a PicklingError as in past versions
      of joblib.
    * Fix kwonlydefaults key error in filter_args (#715)
  - changes from version 0.12:
    * Implement the 'loky' backend with @ogrisel. This backend relies on
      a robust implementation of concurrent.futures.ProcessPoolExecutor
      with spawned processes that can be reused accross the Parallel
      calls. This fixes the bad interation with third paty libraries
      relying on thread pools, described in
      https://pythonhosted.org/joblib/parallel.html#bad-interaction-of-multiprocessing-and-third-party-libraries
    * Limit the number of threads used in worker processes by
      C-libraries that relies on threadpools. This functionality works
      for MKL, OpenBLAS, OpenMP and Accelerated.
    * Prevent numpy arrays with the same shape and data from hashing to
      the same memmap, to prevent jobs with preallocated arrays from
      writing over each other.
    * Reduce overhead of automatic memmap by removing the need to hash
      the array.
    * Make Memory.cache robust to PermissionError (errno 13) under
      Windows when run in combination with Parallel.
    * The automatic array memory mapping feature of Parallel does no
      longer use /dev/shm if it is too small (less than 2 GB). In
      particular in docker containers /dev/shm is only 64 MB by default
      which would cause frequent failures when running joblib in Docker
      containers.
    * Make it possible to hint for thread-based parallelism with
      prefer='threads' or enforce shared-memory semantics with
      require='sharedmem'.
    * Rely on the built-in exception nesting system of Python 3 to
      preserve traceback information when an exception is raised on a
      remote worker process. This avoid verbose and redundant exception
      reports under Python 3.
    * Preserve exception type information when doing nested Parallel
      calls instead of mapping the exception to the generic
      JoblibException type.
    * Introduce the concept of 'store' and refactor the Memory internal
      storage implementation to make it accept extra store backends for
      caching results. backend and backend_options are the new options
      added to Memory to specify and configure a store backend.
    * Add the register_store_backend function to extend the store
      backend used by default with Memory. This default store backend is
      named 'local' and corresponds to the local filesystem.
    * The store backend API is experimental and thus is subject to
      change in the future without deprecation.
    * The cachedir parameter of Memory is now marked as deprecated, use
      location instead.
    * Add support for LZ4 compression if lz4 package is installed.
    * Add register_compressor function for extending available
      compressors.
    * Allow passing a string to compress parameter in dump funtion. This
      string should correspond to the compressor used (e.g. zlib, gzip,
      lz4, etc). The default compression level is used in this case.
    * Allow parallel_backend to be used globally instead of only as a
      context manager. Support lazy registration of external parallel
      backends
* Thu Jan 11 2018 jengelh@inai.de
  - Ensure neutrality of description.
* Mon May 22 2017 toddrme2178@gmail.com
  - Implement single-spec version.
  - Run tests.
  - Fix source URL.
  - Update to version 0.11.
    * For a full changelog please see:
      https://github.com/joblib/joblib/blob/0.11/CHANGES.rst
* Sun May 24 2015 toddrme2178@gmail.com
  - Disable non-functional documentation

Files

/usr/lib/python2.7/site-packages/joblib
/usr/lib/python2.7/site-packages/joblib-0.14.1-py2.7.egg-info
/usr/lib/python2.7/site-packages/joblib-0.14.1-py2.7.egg-info/PKG-INFO
/usr/lib/python2.7/site-packages/joblib-0.14.1-py2.7.egg-info/SOURCES.txt
/usr/lib/python2.7/site-packages/joblib-0.14.1-py2.7.egg-info/dependency_links.txt
/usr/lib/python2.7/site-packages/joblib-0.14.1-py2.7.egg-info/top_level.txt
/usr/lib/python2.7/site-packages/joblib/__init__.py
/usr/lib/python2.7/site-packages/joblib/__init__.pyc
/usr/lib/python2.7/site-packages/joblib/__init__.pyo
/usr/lib/python2.7/site-packages/joblib/_compat.py
/usr/lib/python2.7/site-packages/joblib/_compat.pyc
/usr/lib/python2.7/site-packages/joblib/_compat.pyo
/usr/lib/python2.7/site-packages/joblib/_dask.py
/usr/lib/python2.7/site-packages/joblib/_dask.pyc
/usr/lib/python2.7/site-packages/joblib/_dask.pyo
/usr/lib/python2.7/site-packages/joblib/_memmapping_reducer.py
/usr/lib/python2.7/site-packages/joblib/_memmapping_reducer.pyc
/usr/lib/python2.7/site-packages/joblib/_memmapping_reducer.pyo
/usr/lib/python2.7/site-packages/joblib/_memory_helpers.py
/usr/lib/python2.7/site-packages/joblib/_memory_helpers.pyc
/usr/lib/python2.7/site-packages/joblib/_memory_helpers.pyo
/usr/lib/python2.7/site-packages/joblib/_multiprocessing_helpers.py
/usr/lib/python2.7/site-packages/joblib/_multiprocessing_helpers.pyc
/usr/lib/python2.7/site-packages/joblib/_multiprocessing_helpers.pyo
/usr/lib/python2.7/site-packages/joblib/_parallel_backends.py
/usr/lib/python2.7/site-packages/joblib/_parallel_backends.pyc
/usr/lib/python2.7/site-packages/joblib/_parallel_backends.pyo
/usr/lib/python2.7/site-packages/joblib/_store_backends.py
/usr/lib/python2.7/site-packages/joblib/_store_backends.pyc
/usr/lib/python2.7/site-packages/joblib/_store_backends.pyo
/usr/lib/python2.7/site-packages/joblib/backports.py
/usr/lib/python2.7/site-packages/joblib/backports.pyc
/usr/lib/python2.7/site-packages/joblib/backports.pyo
/usr/lib/python2.7/site-packages/joblib/compressor.py
/usr/lib/python2.7/site-packages/joblib/compressor.pyc
/usr/lib/python2.7/site-packages/joblib/compressor.pyo
/usr/lib/python2.7/site-packages/joblib/disk.py
/usr/lib/python2.7/site-packages/joblib/disk.pyc
/usr/lib/python2.7/site-packages/joblib/disk.pyo
/usr/lib/python2.7/site-packages/joblib/executor.py
/usr/lib/python2.7/site-packages/joblib/executor.pyc
/usr/lib/python2.7/site-packages/joblib/executor.pyo
/usr/lib/python2.7/site-packages/joblib/externals
/usr/lib/python2.7/site-packages/joblib/externals/__init__.py
/usr/lib/python2.7/site-packages/joblib/externals/__init__.pyc
/usr/lib/python2.7/site-packages/joblib/externals/__init__.pyo
/usr/lib/python2.7/site-packages/joblib/externals/cloudpickle
/usr/lib/python2.7/site-packages/joblib/externals/cloudpickle/__init__.py
/usr/lib/python2.7/site-packages/joblib/externals/cloudpickle/__init__.pyc
/usr/lib/python2.7/site-packages/joblib/externals/cloudpickle/__init__.pyo
/usr/lib/python2.7/site-packages/joblib/externals/cloudpickle/cloudpickle.py
/usr/lib/python2.7/site-packages/joblib/externals/cloudpickle/cloudpickle.pyc
/usr/lib/python2.7/site-packages/joblib/externals/cloudpickle/cloudpickle.pyo
/usr/lib/python2.7/site-packages/joblib/externals/cloudpickle/cloudpickle_fast.py
/usr/lib/python2.7/site-packages/joblib/externals/cloudpickle/cloudpickle_fast.pyc
/usr/lib/python2.7/site-packages/joblib/externals/cloudpickle/cloudpickle_fast.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky
/usr/lib/python2.7/site-packages/joblib/externals/loky/__init__.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/__init__.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/__init__.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/_base.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/_base.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/_base.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/__init__.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/__init__.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/__init__.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/_posix_reduction.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/_posix_reduction.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/_posix_reduction.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/_posix_wait.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/_posix_wait.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/_posix_wait.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/_win_reduction.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/_win_reduction.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/_win_reduction.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/_win_wait.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/_win_wait.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/_win_wait.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/compat.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/compat.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/compat.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/compat_posix.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/compat_posix.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/compat_posix.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/compat_win32.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/compat_win32.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/compat_win32.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/context.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/context.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/context.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/fork_exec.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/fork_exec.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/fork_exec.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/managers.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/managers.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/managers.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/popen_loky_posix.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/popen_loky_posix.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/popen_loky_posix.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/popen_loky_win32.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/popen_loky_win32.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/popen_loky_win32.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/process.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/process.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/process.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/queues.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/queues.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/queues.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/reduction.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/reduction.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/reduction.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/resource_tracker.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/resource_tracker.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/resource_tracker.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/semlock.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/semlock.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/semlock.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/spawn.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/spawn.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/spawn.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/synchronize.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/synchronize.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/synchronize.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/utils.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/utils.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/backend/utils.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/cloudpickle_wrapper.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/cloudpickle_wrapper.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/cloudpickle_wrapper.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/process_executor.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/process_executor.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/process_executor.pyo
/usr/lib/python2.7/site-packages/joblib/externals/loky/reusable_executor.py
/usr/lib/python2.7/site-packages/joblib/externals/loky/reusable_executor.pyc
/usr/lib/python2.7/site-packages/joblib/externals/loky/reusable_executor.pyo
/usr/lib/python2.7/site-packages/joblib/format_stack.py
/usr/lib/python2.7/site-packages/joblib/format_stack.pyc
/usr/lib/python2.7/site-packages/joblib/format_stack.pyo
/usr/lib/python2.7/site-packages/joblib/func_inspect.py
/usr/lib/python2.7/site-packages/joblib/func_inspect.pyc
/usr/lib/python2.7/site-packages/joblib/func_inspect.pyo
/usr/lib/python2.7/site-packages/joblib/hashing.py
/usr/lib/python2.7/site-packages/joblib/hashing.pyc
/usr/lib/python2.7/site-packages/joblib/hashing.pyo
/usr/lib/python2.7/site-packages/joblib/logger.py
/usr/lib/python2.7/site-packages/joblib/logger.pyc
/usr/lib/python2.7/site-packages/joblib/logger.pyo
/usr/lib/python2.7/site-packages/joblib/memory.py
/usr/lib/python2.7/site-packages/joblib/memory.pyc
/usr/lib/python2.7/site-packages/joblib/memory.pyo
/usr/lib/python2.7/site-packages/joblib/my_exceptions.py
/usr/lib/python2.7/site-packages/joblib/my_exceptions.pyc
/usr/lib/python2.7/site-packages/joblib/my_exceptions.pyo
/usr/lib/python2.7/site-packages/joblib/numpy_pickle.py
/usr/lib/python2.7/site-packages/joblib/numpy_pickle.pyc
/usr/lib/python2.7/site-packages/joblib/numpy_pickle.pyo
/usr/lib/python2.7/site-packages/joblib/numpy_pickle_compat.py
/usr/lib/python2.7/site-packages/joblib/numpy_pickle_compat.pyc
/usr/lib/python2.7/site-packages/joblib/numpy_pickle_compat.pyo
/usr/lib/python2.7/site-packages/joblib/numpy_pickle_utils.py
/usr/lib/python2.7/site-packages/joblib/numpy_pickle_utils.pyc
/usr/lib/python2.7/site-packages/joblib/numpy_pickle_utils.pyo
/usr/lib/python2.7/site-packages/joblib/parallel.py
/usr/lib/python2.7/site-packages/joblib/parallel.pyc
/usr/lib/python2.7/site-packages/joblib/parallel.pyo
/usr/lib/python2.7/site-packages/joblib/pool.py
/usr/lib/python2.7/site-packages/joblib/pool.pyc
/usr/lib/python2.7/site-packages/joblib/pool.pyo
/usr/lib/python2.7/site-packages/joblib/test
/usr/lib/python2.7/site-packages/joblib/test/__init__.py
/usr/lib/python2.7/site-packages/joblib/test/__init__.pyc
/usr/lib/python2.7/site-packages/joblib/test/__init__.pyo
/usr/lib/python2.7/site-packages/joblib/test/common.py
/usr/lib/python2.7/site-packages/joblib/test/common.pyc
/usr/lib/python2.7/site-packages/joblib/test/common.pyo
/usr/lib/python2.7/site-packages/joblib/test/data
/usr/lib/python2.7/site-packages/joblib/test/data/__init__.py
/usr/lib/python2.7/site-packages/joblib/test/data/__init__.pyc
/usr/lib/python2.7/site-packages/joblib/test/data/__init__.pyo
/usr/lib/python2.7/site-packages/joblib/test/data/create_numpy_pickle.py
/usr/lib/python2.7/site-packages/joblib/test/data/create_numpy_pickle.pyc
/usr/lib/python2.7/site-packages/joblib/test/data/create_numpy_pickle.pyo
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_compressed_pickle_py27_np16.gz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_compressed_pickle_py27_np17.gz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_compressed_pickle_py33_np18.gz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_compressed_pickle_py34_np19.gz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_compressed_pickle_py35_np19.gz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py27_np16.pkl
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py27_np16.pkl.bz2
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py27_np16.pkl.gzip
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py27_np17.pkl
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py27_np17.pkl.bz2
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py27_np17.pkl.gzip
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py27_np17.pkl.lzma
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py27_np17.pkl.xz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py33_np18.pkl
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py33_np18.pkl.bz2
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py33_np18.pkl.gzip
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py33_np18.pkl.lzma
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py33_np18.pkl.xz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py34_np19.pkl
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py34_np19.pkl.bz2
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py34_np19.pkl.gzip
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py34_np19.pkl.lzma
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py34_np19.pkl.xz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py35_np19.pkl
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py35_np19.pkl.bz2
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py35_np19.pkl.gzip
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py35_np19.pkl.lzma
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.10.0_pickle_py35_np19.pkl.xz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.11.0_compressed_pickle_py36_np111.gz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.11.0_pickle_py36_np111.pkl
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.11.0_pickle_py36_np111.pkl.bz2
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.11.0_pickle_py36_np111.pkl.gzip
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.11.0_pickle_py36_np111.pkl.lzma
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.11.0_pickle_py36_np111.pkl.xz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.8.4_compressed_pickle_py27_np17.gz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_compressed_pickle_py27_np16.gz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_compressed_pickle_py27_np17.gz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_compressed_pickle_py34_np19.gz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_compressed_pickle_py35_np19.gz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np16.pkl
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np16.pkl_01.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np16.pkl_02.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np16.pkl_03.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np16.pkl_04.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np17.pkl
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np17.pkl_01.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np17.pkl_02.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np17.pkl_03.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py27_np17.pkl_04.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py33_np18.pkl
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py33_np18.pkl_01.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py33_np18.pkl_02.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py33_np18.pkl_03.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py33_np18.pkl_04.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py34_np19.pkl
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py34_np19.pkl_01.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py34_np19.pkl_02.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py34_np19.pkl_03.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py34_np19.pkl_04.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py35_np19.pkl
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py35_np19.pkl_01.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py35_np19.pkl_02.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py35_np19.pkl_03.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.2_pickle_py35_np19.pkl_04.npy
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.4.dev0_compressed_cache_size_pickle_py35_np19.gz
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.4.dev0_compressed_cache_size_pickle_py35_np19.gz_01.npy.z
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.4.dev0_compressed_cache_size_pickle_py35_np19.gz_02.npy.z
/usr/lib/python2.7/site-packages/joblib/test/data/joblib_0.9.4.dev0_compressed_cache_size_pickle_py35_np19.gz_03.npy.z
/usr/lib/python2.7/site-packages/joblib/test/test_backports.py
/usr/lib/python2.7/site-packages/joblib/test/test_backports.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_backports.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_dask.py
/usr/lib/python2.7/site-packages/joblib/test/test_dask.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_dask.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_disk.py
/usr/lib/python2.7/site-packages/joblib/test/test_disk.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_disk.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_format_stack.py
/usr/lib/python2.7/site-packages/joblib/test/test_format_stack.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_format_stack.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_func_inspect.py
/usr/lib/python2.7/site-packages/joblib/test/test_func_inspect.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_func_inspect.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_func_inspect_special_encoding.py
/usr/lib/python2.7/site-packages/joblib/test/test_func_inspect_special_encoding.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_func_inspect_special_encoding.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_hashing.py
/usr/lib/python2.7/site-packages/joblib/test/test_hashing.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_hashing.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_init.py
/usr/lib/python2.7/site-packages/joblib/test/test_init.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_init.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_logger.py
/usr/lib/python2.7/site-packages/joblib/test/test_logger.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_logger.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_memmapping.py
/usr/lib/python2.7/site-packages/joblib/test/test_memmapping.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_memmapping.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_memory.py
/usr/lib/python2.7/site-packages/joblib/test/test_memory.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_memory.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_module.py
/usr/lib/python2.7/site-packages/joblib/test/test_module.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_module.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_my_exceptions.py
/usr/lib/python2.7/site-packages/joblib/test/test_my_exceptions.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_my_exceptions.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_numpy_pickle.py
/usr/lib/python2.7/site-packages/joblib/test/test_numpy_pickle.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_numpy_pickle.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_numpy_pickle_compat.py
/usr/lib/python2.7/site-packages/joblib/test/test_numpy_pickle_compat.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_numpy_pickle_compat.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_numpy_pickle_utils.py
/usr/lib/python2.7/site-packages/joblib/test/test_numpy_pickle_utils.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_numpy_pickle_utils.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_parallel.py
/usr/lib/python2.7/site-packages/joblib/test/test_parallel.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_parallel.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_store_backends.py
/usr/lib/python2.7/site-packages/joblib/test/test_store_backends.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_store_backends.pyo
/usr/lib/python2.7/site-packages/joblib/test/test_testing.py
/usr/lib/python2.7/site-packages/joblib/test/test_testing.pyc
/usr/lib/python2.7/site-packages/joblib/test/test_testing.pyo
/usr/lib/python2.7/site-packages/joblib/testing.py
/usr/lib/python2.7/site-packages/joblib/testing.pyc
/usr/lib/python2.7/site-packages/joblib/testing.pyo
/usr/share/doc/packages/python2-joblib
/usr/share/doc/packages/python2-joblib/README.rst
/usr/share/licenses/python2-joblib
/usr/share/licenses/python2-joblib/LICENSE.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 11:50:38 2024