forked from pool/python-celery
Compare commits
12 Commits
Author | SHA256 | Date | |
---|---|---|---|
31aeda0ac0 | |||
226b8c292c | |||
89ebed93ce | |||
9af16bb05f | |||
db9b6440d8 | |||
8b43cc734e | |||
81613daec6 | |||
175e3d34ed | |||
181b2a5b58 | |||
fbcef3caac | |||
a7647c9c26 | |||
fef81d8387 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:504a19140e8d3029d5acad88330c541d4c3f64c789d85f94756762d8bca7e706
|
||||
size 1575692
|
3
celery-5.5.3.tar.gz
Normal file
3
celery-5.5.3.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6c972ae7968c2b5281227f01c3a3f984037d21c5129d07bf3550cc2afc6b10a5
|
||||
size 1667144
|
@@ -1,3 +1,74 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 28 12:28:45 UTC 2025 - Nico Krapp <nico.krapp@suse.com>
|
||||
|
||||
- Add dependency on google-cloud-core to fix broken import in tests
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 25 11:54:05 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Convert to libalternatives
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 16 06:12:16 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Switch to pyroject macros.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 10 13:06:55 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 5.5.3
|
||||
* Make the tests run on python 3.13 for gcs backend (#9677)
|
||||
* Added DeepWiki to README (#9683)
|
||||
* Limit redis to <=v5.2.1 to match Kombu (#9693)
|
||||
* Use EX_OK instead of literal zero (#9684)
|
||||
* Make wheel metadata reproducible (#9687)
|
||||
* Let celery install from kombu dependencies for better align (#9696)
|
||||
* Fix stamping documentation to clarify stamped_headers key is optional
|
||||
in visitor methods (#9697)
|
||||
* Support apply_async without queue argument on quorum queues (#9686)
|
||||
* Updated rabbitmq doc about using quorum queues with task routes (#9707)
|
||||
* Add: Dumper Unit Test (#9711)
|
||||
* Add unit test for event.group_from (#9709)
|
||||
* Refactor: add beat_cron_starting_deadline documentation warning (#9712)
|
||||
* Fix: Resolve issue #9569 by supporting distinct broker transport
|
||||
options for workers (#9695)
|
||||
* Fixes issue with retry callback arguments in DelayedDelivery (#9708)
|
||||
* get_exchange-unit-test (#9710)
|
||||
* ISSUE-9704: Update documentation of result_expires, filesystem backend
|
||||
is supported (#9716)
|
||||
* Update to blacksmith ubuntu 24.04 (#9717)
|
||||
* Added unit tests for celery.utils.iso8601 (#9725)
|
||||
* Update introduction.rst docs (#9728)
|
||||
* Prepare for release: v5.5.3 (#9732)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 28 14:36:22 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Update to 5.5.2
|
||||
* Fix calculating remaining time across DST changes
|
||||
* Remove setup_logger from COMPAT_MODULES
|
||||
- Add missing runtime requirement python-dbm
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 8 10:51:40 UTC 2025 - Nico Krapp <nico.krapp@suse.com>
|
||||
|
||||
- Update to 5.5.1
|
||||
* Fixed "AttributeError: list object has no attribute strip" with
|
||||
quorum queues and failover brokers by @Nusnus in #9657
|
||||
* Prepare for release: v5.5.1 by @Nusnus in #9660
|
||||
- Update to 5.5.0
|
||||
* Redis Broker Stability Improvements
|
||||
* pycurl replaced with urllib3
|
||||
* RabbitMQ Quorum Queues Support
|
||||
* Soft Shutdown Mechanism
|
||||
* Pydantic Support
|
||||
* Google Pub/Sub Transport
|
||||
* Python 3.13 Support
|
||||
* REMAP_SIGTERM Support
|
||||
* Database Backend Improvements
|
||||
* see full changelog: https://github.com/celery/celery/releases/tag/v5.5.0
|
||||
- Add new test dependencies
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 3 13:17:39 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-celery
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -26,55 +26,63 @@
|
||||
%bcond_with test
|
||||
%endif
|
||||
%bcond_with ringdisabled
|
||||
%bcond_without libalternatives
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-celery%{psuffix}
|
||||
Version: 5.4.0
|
||||
Version: 5.5.3
|
||||
Release: 0
|
||||
Summary: Distributed Task Queue module for Python
|
||||
License: BSD-3-Clause
|
||||
URL: http://celeryproject.org
|
||||
URL: https://celeryproject.org
|
||||
Source: https://files.pythonhosted.org/packages/source/c/celery/celery-%{version}.tar.gz
|
||||
Patch0: move-pytest-configuration-to-conftest.patch
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: alts
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: netcfg
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: alts
|
||||
Requires: python-billiard >= 4.1.0
|
||||
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.3
|
||||
Requires: python-dbm
|
||||
Requires: python-kombu >= 5.5
|
||||
Requires: python-python-dateutil
|
||||
Requires: python-tzdata
|
||||
Requires: python-vine >= 5.0.0
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
Recommends: python-cryptography
|
||||
Recommends: python-curses
|
||||
Suggests: python-eventlet
|
||||
Suggests: python-gevent
|
||||
Suggests: python-pymongo
|
||||
Suggests: python-python-daemon
|
||||
Suggests: python-pytyrant
|
||||
BuildArch: noarch
|
||||
%if %{with test}
|
||||
BuildRequires: %{python_module PyYAML >= 3.10}
|
||||
BuildRequires: %{python_module SQLAlchemy}
|
||||
BuildRequires: %{python_module azure-storage-blob}
|
||||
BuildRequires: %{python_module boto3 >= 1.9.178}
|
||||
BuildRequires: %{python_module case >= 1.3.1}
|
||||
BuildRequires: %{python_module celery = %{version}}
|
||||
BuildRequires: %{python_module cryptography >= 36.0.2}
|
||||
BuildRequires: %{python_module curses}
|
||||
BuildRequires: %{python_module dbm}
|
||||
BuildRequires: %{python_module eventlet >= 0.32.0}
|
||||
BuildRequires: %{python_module gevent}
|
||||
BuildRequires: %{python_module google-cloud-core}
|
||||
BuildRequires: %{python_module google-cloud-firestore}
|
||||
BuildRequires: %{python_module google-cloud-storage}
|
||||
BuildRequires: %{python_module moto >= 2.2.6}
|
||||
BuildRequires: %{python_module msgpack}
|
||||
BuildRequires: %{python_module pydantic}
|
||||
BuildRequires: %{python_module pymongo >= 4.0.2}
|
||||
BuildRequires: %{python_module pytest >= 4.5.0}
|
||||
BuildRequires: %{python_module pytest-click}
|
||||
BuildRequires: %{python_module pytest-subtests}
|
||||
BuildRequires: %{python_module redis}
|
||||
%if %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
@@ -91,12 +99,12 @@ scheduling as well.
|
||||
|
||||
%build
|
||||
%if !%{with test}
|
||||
%python_build
|
||||
%pyproject_wheel
|
||||
%endif
|
||||
|
||||
%install
|
||||
%if !%{with test}
|
||||
%python_install
|
||||
%pyproject_install
|
||||
%python_clone -a %{buildroot}%{_bindir}/celery
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
%endif
|
||||
@@ -115,15 +123,12 @@ scheduling as well.
|
||||
%endif
|
||||
|
||||
%if !%{with test}
|
||||
%post
|
||||
%python_install_alternative celery
|
||||
|
||||
%postun
|
||||
%python_uninstall_alternative celery
|
||||
%pre
|
||||
%python_libalternatives_reset_alternative celery
|
||||
|
||||
%files %{python_files}
|
||||
%{python_sitelib}/celery
|
||||
%{python_sitelib}/celery-%{version}*-info
|
||||
%{python_sitelib}/celery-%{version}.dist-info
|
||||
%license LICENSE
|
||||
%doc README.rst TODO
|
||||
%python_alternative %{_bindir}/celery
|
||||
|
Reference in New Issue
Block a user