forked from pool/python-tenacity
Accepting request 697030 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/697030 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-tenacity?expand=0&rev=8
This commit is contained in:
commit
8002c96194
@ -1,3 +1,18 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 18 14:58:39 UTC 2019 - Marketa Calabkova <mcalabkova@suse.com>
|
||||||
|
|
||||||
|
- update to 5.0.4
|
||||||
|
* Try using unshallow clone
|
||||||
|
* Add support for Python 3.7
|
||||||
|
* Add test for attempt numbers in interleaved async coroutines
|
||||||
|
* Fix wait_chain to be runnable multiple times
|
||||||
|
* Fix six.wraps having a problem with __name__ attr on Py2
|
||||||
|
* Add retry_if_exception_message and complement
|
||||||
|
* RetryCallState: add retry_object & next_action fields
|
||||||
|
* Tweak wait funcs to accept call_state with backward compat
|
||||||
|
* Add RetryCallState class
|
||||||
|
* Documentation fixes
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jan 9 23:06:29 UTC 2019 - Jonathan Brownell <jbrownell@suse.com>
|
Wed Jan 9 23:06:29 UTC 2019 - Jonathan Brownell <jbrownell@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-tenacity
|
# spec file for package python-tenacity
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,37 +19,36 @@
|
|||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
%bcond_without test
|
%bcond_without test
|
||||||
Name: python-tenacity
|
Name: python-tenacity
|
||||||
Version: 4.12.0
|
Version: 5.0.4
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python module for retrying code until it succeeeds
|
Summary: Python module for retrying code until it succeeeds
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Url: https://github.com/jd/tenacity
|
URL: https://github.com/jd/tenacity
|
||||||
Source: https://files.pythonhosted.org/packages/source/t/tenacity/tenacity-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/t/tenacity/tenacity-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module monotonic >= 0.6}
|
|
||||||
BuildRequires: %{python_module pbr}
|
BuildRequires: %{python_module pbr}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: %{python_module six >= 1.7.0}
|
BuildRequires: %{python_module six >= 1.9.0}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-futures >= 3.0
|
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
|
BuildRequires: python2-futures >= 3.0
|
||||||
|
BuildRequires: python2-monotonic >= 0.6
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
BuildRequires: %{python_module nose}
|
BuildRequires: %{python_module nose}
|
||||||
BuildRequires: %{python_module tornado}
|
BuildRequires: %{python_module tornado}
|
||||||
%endif
|
%endif
|
||||||
Requires: python-monotonic >= 0.6
|
|
||||||
Requires: python-six >= 1.9.0
|
Requires: python-six >= 1.9.0
|
||||||
|
%ifpython2
|
||||||
|
Requires: python-futures >= 3.0
|
||||||
|
Requires: python-monotonic >= 0.6
|
||||||
|
%endif
|
||||||
%if 0%{?_no_weakdeps}
|
%if 0%{?_no_weakdeps}
|
||||||
Requires: python-tornado
|
Requires: python-tornado
|
||||||
%else
|
%else
|
||||||
Recommends: python-tornado
|
Recommends: python-tornado
|
||||||
%endif
|
%endif
|
||||||
%ifpython2
|
|
||||||
Requires: python-futures >= 3.0
|
|
||||||
%endif
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -72,7 +71,7 @@ Features
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%python_install
|
||||||
%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
%check
|
%check
|
||||||
@ -80,7 +79,6 @@ Features
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc ChangeLog README.rst
|
%doc ChangeLog README.rst
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/*
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:dcd7646fe731b21b73870ead85a965a4202abeaf56e0588e6a8b38375110098f
|
|
||||||
size 30015
|
|
3
tenacity-5.0.4.tar.gz
Normal file
3
tenacity-5.0.4.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a0c3c5f7ae0c33f5556c775ca059c12d6fd8ab7121613a713e8b7d649908571b
|
||||||
|
size 41271
|
Loading…
Reference in New Issue
Block a user