Skip to content
Snippets Groups Projects
Commit 8cd16b20 authored by Jan Beich's avatar Jan Beich
Browse files

devel/py-apscheduler: update to 3.10.3

Changes:	https://github.com/agronholm/apscheduler/compare/3.10.2...3.10.3
Reported by:	Repology, portscout
parent bde8f5a3
Branches
Tags
No related merge requests found
PORTNAME= apscheduler PORTNAME= apscheduler
PORTVERSION= 3.10.2 PORTVERSION= 3.10.3
PORTREVISION= 1
CATEGORIES= devel python CATEGORIES= devel python
MASTER_SITES= PYPI MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
......
TIMESTAMP = 1691879756 TIMESTAMP = 1692000999
SHA256 (APScheduler-3.10.2.tar.gz) = 64b65f9ad6803846ca6d9ce0efcb4d7a049df7cb7cf2eb46eddf74dfa7665f8d SHA256 (APScheduler-3.10.3.tar.gz) = 3f17fd3915f14f4bfa597f552130a14a9d1cc74a002fa1d95dd671cb48dba70e
SIZE (APScheduler-3.10.2.tar.gz) = 100853 SIZE (APScheduler-3.10.3.tar.gz) = 100837
https://github.com/agronholm/apscheduler/issues/770
--- apscheduler/schedulers/base.py.orig 2023-08-12 22:35:56 UTC
+++ apscheduler/schedulers/base.py
@@ -67,7 +67,7 @@ class BaseScheduler(six.with_metaclass(ABCMeta)):
.. seealso:: :ref:`scheduler-config`
"""
# The `group=...` API is only available in the backport, used in <=3.7, and in std>=3.10.
- if (3, 8) <= sys.version_info <= (3, 9):
+ if (3, 8) <= sys.version_info[:2] <= (3, 9):
_trigger_plugins = {ep.name: ep for ep in entry_points()['apscheduler.triggers']}
_executor_plugins = {ep.name: ep for ep in entry_points()['apscheduler.executors']}
_jobstore_plugins = {ep.name: ep for ep in entry_points()['apscheduler.jobstores']}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment