17
0

4 Commits

Author SHA256 Message Date
06276cc0ce Accepting request 1325921 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1325921
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-APScheduler?expand=0&rev=26
2026-01-08 14:28:42 +00:00
23bc8c3330 - Update to 3.11.2:
* Fixed an issue where a job using a CronTrigger scheduled
    in a repeated time interval during DST transitions could
    cause the scheduler to get stuck in an infinite loop 
    (#1021; PR by @soulofakuma)
- update build and runtime dependencies to latest state in upstream

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-APScheduler?expand=0&rev=63
2026-01-08 09:13:04 +00:00
1f3c77b6fb Accepting request 1319741 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1319741
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-APScheduler?expand=0&rev=25
2025-11-24 14:53:22 +00:00
4f03c4f416 - Update to 3.11.1
* Fixed scheduler.shutdown() not raising SchedulerNotRunning (or raising
    the wrong exception) for asynchronous schedulers when the scheduler is
    in fact not running
  * Fixed CronTrigger sticking on a folded datetime during the fall-back
    DST transition (#1021).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-APScheduler?expand=0&rev=61
2025-11-24 13:16:17 +00:00
4 changed files with 37 additions and 25 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4c622d250b0955a65d5d0eb91c33e6d43fd879834bf541e0a18661ae60460133
size 107347

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2a9966b052ec805f020c8c4c3ae6e6a06e24b1bf19f2e11d91d8cca0473eef41
size 108683

View File

@@ -1,3 +1,24 @@
-------------------------------------------------------------------
Thu Jan 8 08:23:04 UTC 2026 - Anton Smorodskyi <anton.smorodskyi@suse.com>
- Update to 3.11.2:
* Fixed an issue where a job using a CronTrigger scheduled
in a repeated time interval during DST transitions could
cause the scheduler to get stuck in an infinite loop
(#1021; PR by @soulofakuma)
- update build and runtime dependencies to latest state in upstream
-------------------------------------------------------------------
Fri Nov 21 09:53:15 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 3.11.1
* Fixed scheduler.shutdown() not raising SchedulerNotRunning (or raising
the wrong exception) for asynchronous schedulers when the scheduler is
in fact not running
* Fixed CronTrigger sticking on a folded datetime during the fall-back
DST transition (#1021).
-------------------------------------------------------------------
Thu Apr 10 03:43:18 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-APScheduler
#
# Copyright (c) 2025 SUSE LLC
# Copyright (c) 2026 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-APScheduler
Version: 3.11.0
Version: 3.11.2
Release: 0
Summary: In-process task scheduler with Cron-like capabilities
License: MIT
@@ -26,21 +26,25 @@ URL: https://github.com/agronholm/apscheduler
Source: https://files.pythonhosted.org/packages/source/a/apscheduler/apscheduler-%{version}.tar.gz
BuildRequires: %{python_module SQLAlchemy >= 1.4}
BuildRequires: %{python_module Twisted}
BuildRequires: %{python_module anyio >= 4.0}
BuildRequires: %{python_module attrs >= 21.3}
BuildRequires: %{python_module gevent}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest-asyncio}
BuildRequires: %{python_module pytest-mock}
BuildRequires: %{python_module pytest-tornado}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module pytz}
BuildRequires: %{python_module setuptools >= 36.2.7}
BuildRequires: %{python_module setuptools_scm >= 1.7.0}
BuildRequires: %{python_module tornado}
BuildRequires: %{python_module tzlocal >= 2.0}
BuildRequires: %{python_module setuptools >= 77}
BuildRequires: %{python_module setuptools_scm >= 6.4}
BuildRequires: %{python_module tzlocal >= 3.0}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-attrs >= 21.3
Requires: python-pytz
Requires: python-tzlocal >= 2.0
Requires: python-tzlocal >= 3.0
Recommends: python-SQLAlchemy >= 1.4
Recommends: python-Twisted
Recommends: python-gevent
@@ -49,17 +53,6 @@ Suggests: python-pymongo >= 3.0
Suggests: python-redis
Suggests: python-tornado >= 4.3
BuildArch: noarch
%if %{with python2}
BuildRequires: python-funcsigs
BuildRequires: python-futures
BuildRequires: python-mock
BuildRequires: python-trollius
%endif
%ifpython2
Requires: python-funcsigs
Requires: python-futures
Requires: python-trollius
%endif
%python_subpackages
%description
@@ -85,7 +78,7 @@ APscheduler provides multiple job stores.
%prep
%setup -q -n apscheduler-%{version}
sed -i 's/--cov//' setup.cfg
sed -i 's/--cov//' pyproject.toml || true
%build
%pyproject_wheel
@@ -95,13 +88,11 @@ sed -i 's/--cov//' setup.cfg
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
# https://github.com/agronholm/apscheduler/issues/601
%pytest -k 'not test_broken_pool'
%pytest -p asyncio -k "not (redis or mongodb or rethinkdb or zookeeper)"
%files %{python_files}
%license LICENSE.txt
%doc README.rst
%doc examples/
%{python_sitelib}/apscheduler
%{python_sitelib}/[Aa][Pp][Ss]cheduler-%{version}.dist-info