mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-05 20:51:15 -07:00
Bump apscheduler from 3.10.0 to 3.10.1 (#2013)
* Bump apscheduler from 3.10.0 to 3.10.1 Bumps [apscheduler](https://github.com/agronholm/apscheduler) from 3.10.0 to 3.10.1. - [Release notes](https://github.com/agronholm/apscheduler/releases) - [Changelog](https://github.com/agronholm/apscheduler/blob/3.10.1/docs/versionhistory.rst) - [Commits](https://github.com/agronholm/apscheduler/compare/3.10.0...3.10.1) --- updated-dependencies: - dependency-name: apscheduler dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Update apscheduler==3.10.1 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
This commit is contained in:
parent
69e1b43aa1
commit
ec323abb92
3 changed files with 3 additions and 3 deletions
|
@ -33,7 +33,7 @@ class QtScheduler(BaseScheduler):
|
|||
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):
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
apscheduler==3.10.0
|
||||
apscheduler==3.10.1
|
||||
importlib-metadata==6.0.0
|
||||
importlib-resources==5.12.0
|
||||
pyinstaller==5.8.0
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
appdirs==1.4.4
|
||||
apscheduler==3.10.0
|
||||
apscheduler==3.10.1
|
||||
arrow==1.2.3
|
||||
backports.csv==1.0.7
|
||||
backports.functools-lru-cache==1.6.4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue