Hello community, here is the log from the commit of package python-celery for openSUSE:Factory checked in at 2018-08-18 00:04:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-celery (Old) and /work/SRC/openSUSE:Factory/.python-celery.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-celery" Sat Aug 18 00:04:50 2018 rev:22 rq:629554 version:4.2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-celery/python-celery.changes 2018-05-11 14:27:47.941129820 +0200 +++ /work/SRC/openSUSE:Factory/.python-celery.new/python-celery.changes 2018-08-18 00:04:55.503222944 +0200 @@ -1,0 +2,9 @@ +Thu Aug 16 11:04:24 UTC 2018 - [email protected] + +- Update to 4.2.1: + * Fix to build with newest kombu + * Many bugfixes around +- Add patch to skip test that should not be run: + * celery-no-redis.patch + +------------------------------------------------------------------- Old: ---- celery-4.1.0.tar.gz New: ---- celery-4.2.1.tar.gz celery-no-redis.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-celery.spec ++++++ --- /var/tmp/diff_new_pack.360AKP/_old 2018-08-18 00:04:56.023224500 +0200 +++ /var/tmp/diff_new_pack.360AKP/_new 2018-08-18 00:04:56.023224500 +0200 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-celery -Version: 4.1.0 +Version: 4.2.1 Release: 0 Summary: Distributed Task Queue module for Python License: BSD-3-Clause @@ -26,6 +26,7 @@ URL: http://celeryproject.org Source: https://files.pythonhosted.org/packages/source/c/celery/celery-%{version}.tar.gz Patch0: disable-pytest-log-capturing.patch +Patch1: celery-no-redis.patch BuildRequires: %{python_module SQLAlchemy} BuildRequires: %{python_module billiard >= 3.5.0.2} BuildRequires: %{python_module case >= 1.3.1} @@ -64,7 +65,8 @@ %prep %setup -q -n celery-%{version} -%patch0 -p1 +%autopatch -p1 +sed -i -e 's:,<3.3::g' requirements/test.txt %build %python_build @@ -74,7 +76,7 @@ %fdupes %{buildroot}/%{_prefix} %check -python setup.py -q test +%python_exec setup.py test %files %{python_files} %{python_sitelib}/* ++++++ celery-4.1.0.tar.gz -> celery-4.2.1.tar.gz ++++++ ++++ 25677 lines of diff (skipped) ++++++ celery-no-redis.patch ++++++ >From b2668607c909c61becd151905b4525190c19ff4a Mon Sep 17 00:00:00 2001 From: Jon Dufresne <[email protected]> Date: Sat, 23 Jun 2018 16:08:47 -0700 Subject: [PATCH] Require the redis module for test test_timeouts_in_url_coerced (#4847) The test requires the redis module to be installed. It is referenced in the function RedisBackend._params_from_url(). Fixes AppVeyor build failures. --- t/unit/backends/test_redis.py | 1 + 1 file changed, 1 insertion(+) diff --git a/t/unit/backends/test_redis.py b/t/unit/backends/test_redis.py index ee2ecf7959..166aa0dc34 100644 --- a/t/unit/backends/test_redis.py +++ b/t/unit/backends/test_redis.py @@ -234,6 +234,7 @@ def test_url(self): assert x.connparams['socket_timeout'] == 30.0 assert x.connparams['socket_connect_timeout'] == 100.0 + @skip.unless_module('redis') def test_timeouts_in_url_coerced(self): x = self.Backend( ('redis://:[email protected]:123//1?'
