Compare commits
4 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 06276cc0ce | |||
| 23bc8c3330 | |||
| 1f3c77b6fb | |||
| 4f03c4f416 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4c622d250b0955a65d5d0eb91c33e6d43fd879834bf541e0a18661ae60460133
|
||||
size 107347
|
||||
3
apscheduler-3.11.2.tar.gz
Normal file
3
apscheduler-3.11.2.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2a9966b052ec805f020c8c4c3ae6e6a06e24b1bf19f2e11d91d8cca0473eef41
|
||||
size 108683
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user