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>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# 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
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -19,37 +19,36 @@
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
%bcond_without test
|
||||
Name: python-tenacity
|
||||
Version: 4.12.0
|
||||
Version: 5.0.4
|
||||
Release: 0
|
||||
Summary: Python module for retrying code until it succeeeds
|
||||
License: Apache-2.0
|
||||
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
|
||||
BuildRequires: %{python_module monotonic >= 0.6}
|
||||
BuildRequires: %{python_module pbr}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module six >= 1.7.0}
|
||||
BuildRequires: %{python_module six >= 1.9.0}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-futures >= 3.0
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildRequires: python2-futures >= 3.0
|
||||
BuildRequires: python2-monotonic >= 0.6
|
||||
%if %{with test}
|
||||
BuildRequires: %{python_module nose}
|
||||
BuildRequires: %{python_module tornado}
|
||||
%endif
|
||||
Requires: python-monotonic >= 0.6
|
||||
Requires: python-six >= 1.9.0
|
||||
%ifpython2
|
||||
Requires: python-futures >= 3.0
|
||||
Requires: python-monotonic >= 0.6
|
||||
%endif
|
||||
%if 0%{?_no_weakdeps}
|
||||
Requires: python-tornado
|
||||
%else
|
||||
Recommends: python-tornado
|
||||
%endif
|
||||
%ifpython2
|
||||
Requires: python-futures >= 3.0
|
||||
%endif
|
||||
BuildArch: noarch
|
||||
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
@ -72,7 +71,7 @@ Features
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%if %{with test}
|
||||
%check
|
||||
@ -80,7 +79,6 @@ Features
|
||||
%endif
|
||||
|
||||
%files %{python_files}
|
||||
%defattr(-,root,root,-)
|
||||
%license LICENSE
|
||||
%doc ChangeLog README.rst
|
||||
%{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