Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-django-rq for
openSUSE:Factory checked in at 2026-01-22 17:59:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-rq (Old)
and /work/SRC/openSUSE:Factory/.python-django-rq.new.1928 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-django-rq"
Thu Jan 22 17:59:00 2026 rev:11 rq:1328688 version:3.2.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-django-rq/python-django-rq.changes
2025-06-03 17:54:11.539229974 +0200
+++
/work/SRC/openSUSE:Factory/.python-django-rq.new.1928/python-django-rq.changes
2026-01-22 17:59:04.930823279 +0100
@@ -1,0 +2,11 @@
+Wed Jan 21 13:55:19 UTC 2026 - Markéta Machová <[email protected]>
+
+- Update to 3.2.2
+ * Added /metrics endpoint to expose RQ metrics in Prometheus format.
+ * Migrated Django-RQ to use Python's modern packaging standard.
+ * Added support for RQ's new CronScheduler.
+ * Refactored the codebase to follow modern Django and Python best practices.
+ * Changed CronJob argument from timeout to job_timeout to match RQ's
+ implementation.
+
+-------------------------------------------------------------------
Old:
----
django-rq-3.0.tar.gz
New:
----
django_rq-3.2.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-django-rq.spec ++++++
--- /var/tmp/diff_new_pack.AYVnH4/_old 2026-01-22 17:59:05.870862494 +0100
+++ /var/tmp/diff_new_pack.AYVnH4/_new 2026-01-22 17:59:05.874862661 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-django-rq
#
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,28 +18,29 @@
%{?sle15_python_module_pythons}
Name: python-django-rq
-Version: 3.0
+Version: 3.2.2
Release: 0
Summary: Simple app that provides django integration for RQ (Redis
Queue)
License: MIT
Group: Development/Languages/Python
URL: https://github.com/rq/django-rq
-Source:
https://github.com/rq/django-rq/archive/v%{version}/django-rq-%{version}.tar.gz
+Source:
https://github.com/rq/django-rq/archive/v%{version}/django_rq-%{version}.tar.gz
+BuildRequires: %{python_module hatch_vcs}
+BuildRequires: %{python_module hatchling}
BuildRequires: %{python_module pip}
-BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
-Requires: python-Django >= 2.0
-Requires: python-rq >= 1.14
-Recommends: python-django-redis >= 3.0
+Requires: python-Django >= 4.2
+Requires: python-redis >= 3.5
+Requires: python-rq >= 2.6.1
BuildArch: noarch
# SECTION test requirements
-BuildRequires: %{python_module Django >= 2.0}
-BuildRequires: %{python_module django-redis >= 3.0}
+BuildRequires: %{python_module Django >= 4.2}
+BuildRequires: %{python_module PyYAML}
BuildRequires: %{python_module pytest-django}
-BuildRequires: %{python_module rq >= 1.14}
-BuildRequires: %{python_module rq-scheduler}
+BuildRequires: %{python_module redis >= 3.5}
+BuildRequires: %{python_module rq >= 2.6.1}
BuildRequires: redis
# /SECTION
%python_subpackages
@@ -57,17 +58,16 @@
%install
%pyproject_install
-%python_expand rm -r %{buildroot}%{$python_sitelib}/django_rq/tests/
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%{_sbindir}/redis-server &
export PYTHONPATH=${PWD}
-export DJANGO_SETTINGS_MODULE=django_rq.tests.settings
+export DJANGO_SETTINGS_MODULE=tests.settings
%pytest -k 'not (test_job_details or test_jobs)'
%files %{python_files}
%license LICENSE.txt
-%doc README.rst
+%doc README.md
%{python_sitelib}/django[-_]rq*/