Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-APScheduler for openSUSE:Factory checked in at 2023-03-15 18:54:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-APScheduler (Old) and /work/SRC/openSUSE:Factory/.python-APScheduler.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-APScheduler" Wed Mar 15 18:54:39 2023 rev:20 rq:1071875 version:3.10.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-APScheduler/python-APScheduler.changes 2023-02-23 18:00:33.625264395 +0100 +++ /work/SRC/openSUSE:Factory/.python-APScheduler.new.31432/python-APScheduler.changes 2023-03-15 18:54:51.892497393 +0100 @@ -1,0 +2,8 @@ +Tue Mar 14 22:16:50 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 3.10.1: + * Fixed ``TypeError: arguments did not match any overloaded + call:`` in QtScheduler due to ``wait_time`` being float + and not an integer which QT needs it to be + +------------------------------------------------------------------- Old: ---- APScheduler-3.10.0.tar.gz New: ---- APScheduler-3.10.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-APScheduler.spec ++++++ --- /var/tmp/diff_new_pack.gvNLqj/_old 2023-03-15 18:54:52.452500372 +0100 +++ /var/tmp/diff_new_pack.gvNLqj/_new 2023-03-15 18:54:52.456500394 +0100 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %bcond_without python2 Name: python-APScheduler -Version: 3.10.0 +Version: 3.10.1 Release: 0 Summary: In-process task scheduler with Cron-like capabilities License: MIT ++++++ APScheduler-3.10.0.tar.gz -> APScheduler-3.10.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/APScheduler-3.10.0/APScheduler.egg-info/PKG-INFO new/APScheduler-3.10.1/APScheduler.egg-info/PKG-INFO --- old/APScheduler-3.10.0/APScheduler.egg-info/PKG-INFO 2023-01-31 23:38:27.000000000 +0100 +++ new/APScheduler-3.10.1/APScheduler.egg-info/PKG-INFO 2023-03-03 10:03:06.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: APScheduler -Version: 3.10.0 +Version: 3.10.1 Summary: In-process task scheduler with Cron-like capabilities Home-page: https://github.com/agronholm/apscheduler Author: Alex Grönholm diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/APScheduler-3.10.0/PKG-INFO new/APScheduler-3.10.1/PKG-INFO --- old/APScheduler-3.10.0/PKG-INFO 2023-01-31 23:38:27.895592000 +0100 +++ new/APScheduler-3.10.1/PKG-INFO 2023-03-03 10:03:06.213973800 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: APScheduler -Version: 3.10.0 +Version: 3.10.1 Summary: In-process task scheduler with Cron-like capabilities Home-page: https://github.com/agronholm/apscheduler Author: Alex Grönholm diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/APScheduler-3.10.0/apscheduler/schedulers/qt.py new/APScheduler-3.10.1/apscheduler/schedulers/qt.py --- old/APScheduler-3.10.0/apscheduler/schedulers/qt.py 2023-01-31 23:38:17.000000000 +0100 +++ new/APScheduler-3.10.1/apscheduler/schedulers/qt.py 2023-03-03 10:02:56.000000000 +0100 @@ -33,7 +33,7 @@ def _start_timer(self, wait_seconds): self._stop_timer() if wait_seconds is not None: - wait_time = min(wait_seconds * 1000, 2147483647) + wait_time = min(int(wait_seconds * 1000), 2147483647) self._timer = QTimer.singleShot(wait_time, self._process_jobs) def _stop_timer(self): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/APScheduler-3.10.0/docs/versionhistory.rst new/APScheduler-3.10.1/docs/versionhistory.rst --- old/APScheduler-3.10.0/docs/versionhistory.rst 2023-01-31 23:38:17.000000000 +0100 +++ new/APScheduler-3.10.1/docs/versionhistory.rst 2023-03-03 10:02:56.000000000 +0100 @@ -4,6 +4,13 @@ To find out how to migrate your application from a previous version of APScheduler, see the :doc:`migration section <migration>`. +3.10.1 +------ + +* Fixed ``TypeError: arguments did not match any overloaded call:`` in QtScheduler due + to ``wait_time`` being float and not an integer which QT needs it to be + + 3.10.0 ------