14
0
forked from pool/python-joblib

Accepting request 669903 from home:mcepl:branches:devel:languages:python

- 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).

OBS-URL: https://build.opensuse.org/request/show/669903
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-joblib?expand=0&rev=22
This commit is contained in:
2019-01-29 16:01:24 +00:00
committed by Git OBS Bridge
parent ba4d2ca665
commit dcc6efe0f4
4 changed files with 23 additions and 9 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:651fdd4888cdefa39f65c942e33ba1a610d395acd9c1d787adbda1a6beb22218
size 1576411

3
joblib-0.13.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4deed0d8d3368aa0353f9a3cb22582c7100ce9db2c4b489c838957982b3a5d2b
size 286857

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Tue Jan 29 16:41:57 CET 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 7 19:39:00 UTC 2019 - Todd R <toddrme2178@gmail.com> Mon Jan 7 19:39:00 UTC 2019 - Todd R <toddrme2178@gmail.com>

View File

@@ -18,25 +18,24 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}} %{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-joblib Name: python-joblib
Version: 0.13.0 Version: 0.13.1
Release: 0 Release: 0
Summary: Module for using Python functions as pipeline jobs Summary: Module for using Python functions as pipeline jobs
License: BSD-3-Clause License: BSD-3-Clause
Group: Development/Languages/Python Group: Development/Languages/Python
URL: https://github.com/joblib/joblib URL: https://github.com/joblib/joblib
Source: https://files.pythonhosted.org/packages/source/j/joblib/joblib-%{version}.tar.gz Source: https://files.pythonhosted.org/packages/source/j/joblib/joblib-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Recommends: python-numpy
BuildArch: noarch
BuildRequires: %{python_module lz4} BuildRequires: %{python_module lz4}
BuildRequires: %{python_module numpy} BuildRequires: %{python_module numpy}
BuildRequires: %{python_module psutil} BuildRequires: %{python_module psutil}
BuildRequires: %{python_module pytest} BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-lz4 Requires: python-lz4
Recommends: python-numpy Recommends: python-numpy
Recommends: python-psutil Recommends: python-psutil
BuildArch: noarch
%python_subpackages %python_subpackages
%description %description