14
0

- update to 3.10.4:

* Fixed incorrect module name being generated for references to
    class methods via a subclass where the subclass does not
    override the method
  * Fixed ``TypeError`` related to entry point iteration on
    Python 3.9
  * Ensured consistent support for both PySide and PyQt (v6 to
    v2) on QtScheduler
  * Replaced uses of the deprecated ``pkg_resources`` module with
    ``importlib.metadata``
  * Fixed scheduling class methods like ``B.methodname`` where
    the ``B`` class inherits from class ``A`` and ``methodname``
    is a class method of class ``A``
  * Fixed scheduler sleeping for too long (and thus jobs missing
    their scheduled run times) if its wakeup cycle takes too much
    time
  * Dropped support for Python versions older than 3.6
- version update to 3.9.1.post1
  would cause incorrect timing for a cron trigger

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-APScheduler?expand=0&rev=54
This commit is contained in:
2023-09-18 19:33:50 +00:00
committed by Git OBS Bridge
parent 8eb4e45add
commit c1c08a983a
4 changed files with 28 additions and 8 deletions

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Mon Sep 18 19:32:28 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 3.10.4:
* Fixed incorrect module name being generated for references to
class methods via a subclass where the subclass does not
override the method
* Fixed ``TypeError`` related to entry point iteration on
Python 3.9
* Ensured consistent support for both PySide and PyQt (v6 to
v2) on QtScheduler
* Replaced uses of the deprecated ``pkg_resources`` module with
``importlib.metadata``
* Fixed scheduling class methods like ``B.methodname`` where
the ``B`` class inherits from class ``A`` and ``methodname``
is a class method of class ``A``
* Fixed scheduler sleeping for too long (and thus jobs missing
their scheduled run times) if its wakeup cycle takes too much
time
-------------------------------------------------------------------
Wed Aug 16 14:41:47 UTC 2023 - ecsos <ecsos@opensuse.org>
@@ -17,12 +37,12 @@ Thu Feb 23 14:31:39 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 3.10.0:
* Fixed compatibility with SQLAlchemy 2.0 and bumped minimum
supported version to 1.4
* Dropped support for Python versions older than 3.6
* Dropped support for Python versions older than 3.6
-------------------------------------------------------------------
Thu Dec 1 17:48:48 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- version update to 3.9.1.post1
- version update to 3.9.1.post1
* Dropped Python 2.7 from the list of supported Python versions
Relates to #666.
@@ -58,7 +78,7 @@ Sat Oct 16 19:01:07 UTC 2021 - Dirk Müller <dmueller@suse.com>
- update to 3.8.0:
* Allowed passing through keyword arguments to the underlying stdlib executors in the
thread/process pool executors (PR by Albert Xu)
-------------------------------------------------------------------
Mon Feb 1 17:38:33 UTC 2021 - Dirk Müller <dmueller@suse.com>
@@ -611,5 +631,5 @@ Tue Aug 16 08:28:29 UTC 2011 - cfarrell@novell.com
----
* Fixed a corner case where the combination of hour and day_of_week parameters
would cause incorrect timing for a cron trigger
would cause incorrect timing for a cron trigger