Hello community,
here is the log from the commit of package python-tenacity for
openSUSE:Leap:15.2 checked in at 2020-03-02 13:23:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/python-tenacity (Old)
and /work/SRC/openSUSE:Leap:15.2/.python-tenacity.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-tenacity"
Mon Mar 2 13:23:48 2020 rev:11 rq:777206 version:6.0.0
Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/python-tenacity/python-tenacity.changes
2020-01-15 15:53:45.939608988 +0100
+++
/work/SRC/openSUSE:Leap:15.2/.python-tenacity.new.26092/python-tenacity.changes
2020-03-02 13:23:49.198453551 +0100
@@ -1,0 +2,67 @@
+Fri Dec 20 18:42:18 UTC 2019 - Dirk Mueller <[email protected]>
+
+- update to 6.0.0
+ * Python 3.8 enablement
+
+-------------------------------------------------------------------
+Wed Aug 28 11:46:28 UTC 2019 - Marketa Calabkova <[email protected]>
+
+- update to 5.1.1
+ * upstream switched to reno, so no upstream changelog
+ * Use setuptools_scm for packaging
+ * Drop Python 3.4
+ * Reduce wait_exponential power by 1 so first wait is equal to multiplier
+
+-------------------------------------------------------------------
+Thu Apr 18 14:58:39 UTC 2019 - Marketa Calabkova <[email protected]>
+
+- 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 <[email protected]>
+
+- Use "Requires:" instead of "Recommends:" on older build platforms
+
+-------------------------------------------------------------------
+Tue Dec 4 12:55:05 UTC 2018 - Matej Cepl <[email protected]>
+
+- Remove superfluous devel dependency for noarch package
+
+-------------------------------------------------------------------
+Thu Oct 18 21:56:38 UTC 2018 - Jan Engelhardt <[email protected]>
+
+- Use noun phrase in summary.
+
+-------------------------------------------------------------------
+Thu Oct 11 11:56:31 UTC 2018 - Dirk Mueller <[email protected]>
+
+- update to 4.12.0:
+ * add retry\_error\_callback param
+ * Fix Mergify conf
+ * Enable mergify
+ * Implement before\_sleep logging hook
+ * Rename tenacity.async to tenacity.\_asyncio
+ * Remove useless install of nose
+ * Switch to pytest
+ * Fix codeblock formatting
+ * Document how to use Trio/curio
+ * Catch BaseException rather than just Exception
+ * Fix pep8 errors
+ * Only install monotonic on Python 2
+ * Stop using pbr to build documentation
+ * Add \`license\` key to \`setup.cfg\`
+ * Avoid inspect.getargspec deprecation warning
+ * Don't fall over if an old version of tornado is installed
+ * Allow to specify RetryError
+
+-------------------------------------------------------------------
Old:
----
tenacity-4.8.0.tar.gz
New:
----
tenacity-6.0.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-tenacity.spec ++++++
--- /var/tmp/diff_new_pack.gL2YRu/_old 2020-03-02 13:23:49.510454171 +0100
+++ /var/tmp/diff_new_pack.gL2YRu/_new 2020-03-02 13:23:49.514454178 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-tenacity
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,40 +12,42 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_without test
Name: python-tenacity
-Version: 4.8.0
+Version: 6.0.0
Release: 0
-Summary: Retry code until it succeeeds
+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 devel}
-BuildRequires: %{python_module monotonic >= 0.6}
-BuildRequires: %{python_module pbr}
+BuildRequires: %{python_module setuptools_scm}
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 pytest}
BuildRequires: %{python_module tornado}
%endif
-Requires: python-monotonic >= 0.6
Requires: python-six >= 1.9.0
-Recommends: python-tornado
%ifpython2
Requires: python-futures >= 3.0
+Requires: python-monotonic >= 0.6
+%endif
+%if 0%{?_no_weakdeps}
+Requires: python-tornado >= 4.5
+%else
+Recommends: python-tornado
%endif
BuildArch: noarch
-
%python_subpackages
%description
@@ -68,16 +70,16 @@
%install
%python_install
-%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
%if %{with test}
%check
-%python_exec setup.py nosetests --ignore-files '.*async.py'
+%pytest --ignore tenacity/tests/test_asyncio.py
%endif
%files %{python_files}
-%defattr(-,root,root,-)
-%doc AUTHORS ChangeLog LICENSE README.rst
+%license LICENSE
+%doc README.rst
%{python_sitelib}/*
%changelog
++++++ tenacity-4.8.0.tar.gz -> tenacity-6.0.0.tar.gz ++++++
++++ 5141 lines of diff (skipped)