14
0
Files
python-tenacity/python-tenacity.spec
Tomáš Chvátal 2c313ed3c6 Accepting request 696988 from home:mcalabkova:branches:devel:languages:python
- 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

OBS-URL: https://build.opensuse.org/request/show/696988
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tenacity?expand=0&rev=21
2019-04-23 09:18:20 +00:00

87 lines
2.6 KiB
RPMSpec

#
# spec file for package python-tenacity
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_without test
Name: python-tenacity
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
Source: https://files.pythonhosted.org/packages/source/t/tenacity/tenacity-%{version}.tar.gz
BuildRequires: %{python_module pbr}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six >= 1.9.0}
BuildRequires: fdupes
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-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
BuildArch: noarch
%python_subpackages
%description
Tenacity is a general-purpose retrying library, written in Python, to simplify
the task of adding retry behavior to just about anything.
It originates from a fork of `Retrying`_
Features
--------
- Generic Decorator API
- Specify stop condition (i.e. limit by number of attempts)
- Specify wait condition (i.e. exponential backoff sleeping between attempts)
- Customize retrying on Exceptions
- Customize retrying on expected returned result
%prep
%setup -q -n tenacity-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%if %{with test}
%check
%python_exec setup.py nosetests --ignore-files '.*asyncio.py'
%endif
%files %{python_files}
%license LICENSE
%doc ChangeLog README.rst
%{python_sitelib}/*
%changelog