forked from pool/python-celery
Accepting request 989213 from home:mcalabkova:branches:devel:languages:python
- Update to version 5.2.7 * Depend on the maintained python-consul2 library. (#6544). * Use result_chord_join_timeout instead of hardcoded default value. * Upgrade AzureBlockBlob storage backend to use Azure blob storage library v12 (#6580). * Exit celery with non zero exit value if failing (#6602). * Raise BackendStoreError when set value is too large for Redis. * Trace task optimizations are now set via Celery app instance. * Add store_eager_result setting so eager tasks can store result on the result backend (#6614). * Allow heartbeats to be sent in tests (#6632). * Simulate more exhaustive delivery info in apply(). * Start chord header tasks as soon as possible (#6576). * --quiet flag now actually makes celery avoid producing logs (#6599). * Update platforms.py "superuser privileges" check (#6600). * fnmatch.translate() already translates globs for us. (#6668). * Upgrade some syntax to Python 3.6+. * Fix checking expiration of X.509 certificates (#6678). * Fix JSON decoding errors when using MongoDB as backend (#6675). * Allow configuration of RedisBackend's health_check_interval (#6666). * Tasks can now have required kwargs at any order (#6699). * Initial support of python 3.9 added. * Add Python 3.10 support (#6807). * Fix docstring for Signal.send to match code (#6835). * Chords get body_type independently to handle cases where body.type does not exist (#6847). * Fix multithreaded backend usage (#6851). * Fix Open Collective donate button (#6848). OBS-URL: https://build.opensuse.org/request/show/989213 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-celery?expand=0&rev=147
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -28,25 +28,25 @@
|
||||
%endif
|
||||
%bcond_with ringdisabled
|
||||
Name: python-celery%{psuffix}
|
||||
Version: 5.0.5
|
||||
Version: 5.2.7
|
||||
Release: 0
|
||||
Summary: Distributed Task Queue module for Python
|
||||
License: BSD-3-Clause
|
||||
URL: http://celeryproject.org
|
||||
Source: https://files.pythonhosted.org/packages/source/c/celery/celery-%{version}.tar.gz
|
||||
Patch0: move-pytest-configuration-to-conftest.patch
|
||||
Patch1: relax-click.patch
|
||||
Patch1: tests.patch
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: netcfg
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-billiard >= 3.6.3.0
|
||||
Requires: python-click >= 8.0
|
||||
Requires: python-billiard >= 3.6.4
|
||||
Requires: python-click >= 8.0.3
|
||||
Requires: python-click-didyoumean >= 0.0.3
|
||||
Requires: python-click-plugins >= 1.1.1
|
||||
Requires: python-click-repl >= 0.2.0
|
||||
Requires: python-kombu >= 5.0.0
|
||||
Requires: python-pytz >= 2016.7
|
||||
Requires: python-kombu >= 5.2.3
|
||||
Requires: python-pytz >= 2021.3
|
||||
Requires: python-vine >= 5.0.0
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun):update-alternatives
|
||||
@@ -59,17 +59,17 @@ Suggests: python-python-daemon
|
||||
Suggests: python-pytyrant
|
||||
BuildArch: noarch
|
||||
%if %{with test}
|
||||
BuildRequires: %{python_module PyYAML}
|
||||
BuildRequires: %{python_module PyYAML >= 3.10}
|
||||
BuildRequires: %{python_module SQLAlchemy}
|
||||
BuildRequires: %{python_module boto3 >= 1.9.178}
|
||||
BuildRequires: %{python_module case >= 1.3.1}
|
||||
BuildRequires: %{python_module celery = %{version}}
|
||||
BuildRequires: %{python_module cryptography}
|
||||
BuildRequires: %{python_module eventlet >= 0.26.1}
|
||||
BuildRequires: %{python_module cryptography >= 36.0.2}
|
||||
BuildRequires: %{python_module eventlet >= 0.32.0}
|
||||
BuildRequires: %{python_module gevent}
|
||||
BuildRequires: %{python_module moto >= 1.3.7}
|
||||
BuildRequires: %{python_module moto >= 2.2.6}
|
||||
BuildRequires: %{python_module msgpack}
|
||||
BuildRequires: %{python_module pymongo >= 3.3.0}
|
||||
BuildRequires: %{python_module pymongo >= 4.0.2}
|
||||
BuildRequires: %{python_module pytest >= 4.5.0}
|
||||
BuildRequires: %{python_module pytest-subtests}
|
||||
%if %{with ringdisabled}
|
||||
@@ -86,8 +86,6 @@ scheduling as well.
|
||||
%prep
|
||||
%setup -q -n celery-%{version}
|
||||
%autopatch -p1
|
||||
# do not hardcode versions
|
||||
sed -i -e 's:==:>=:g' requirements/*.txt
|
||||
|
||||
%build
|
||||
%if !%{with test}
|
||||
@@ -103,8 +101,8 @@ sed -i -e 's:==:>=:g' requirements/*.txt
|
||||
|
||||
%check
|
||||
%if %{with test}
|
||||
# test_init_mongodb_dns_seedlist - does not work with new pymongo, will be fixed in 5.1
|
||||
%pytest -k 'not test_init_mongodb_dns_seedlist'
|
||||
# test_check_privileges_no_fchown - first it deletes fchown from the system, so it needs root privileges, and then it runs the worker and complains about root privileges
|
||||
%pytest -k "not test_check_privileges_no_fchown"
|
||||
%endif
|
||||
|
||||
%if !%{with test}
|
||||
|
||||
Reference in New Issue
Block a user