orionis 0.624.0__py3-none-any.whl → 0.625.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- orionis/console/tasks/schedule.py +2 -2
- orionis/metadata/framework.py +1 -2
- {orionis-0.624.0.dist-info → orionis-0.625.0.dist-info}/METADATA +1 -2
- {orionis-0.624.0.dist-info → orionis-0.625.0.dist-info}/RECORD +7 -7
- {orionis-0.624.0.dist-info → orionis-0.625.0.dist-info}/WHEEL +0 -0
- {orionis-0.624.0.dist-info → orionis-0.625.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.624.0.dist-info → orionis-0.625.0.dist-info}/top_level.txt +0 -0
|
@@ -2,7 +2,6 @@ import asyncio
|
|
|
2
2
|
from datetime import datetime
|
|
3
3
|
import logging
|
|
4
4
|
from typing import Any, Dict, List, Optional, Union
|
|
5
|
-
import pytz
|
|
6
5
|
from apscheduler.events import (
|
|
7
6
|
EVENT_JOB_ERROR,
|
|
8
7
|
EVENT_JOB_EXECUTED,
|
|
@@ -37,6 +36,7 @@ from orionis.console.request.cli_request import CLIRequest
|
|
|
37
36
|
from orionis.failure.contracts.catch import ICatch
|
|
38
37
|
from orionis.foundation.contracts.application import IApplication
|
|
39
38
|
from orionis.services.log.contracts.log_service import ILogger
|
|
39
|
+
from zoneinfo import ZoneInfo
|
|
40
40
|
|
|
41
41
|
class Schedule(ISchedule):
|
|
42
42
|
|
|
@@ -86,7 +86,7 @@ class Schedule(ISchedule):
|
|
|
86
86
|
self.__rich_console = rich_console
|
|
87
87
|
|
|
88
88
|
# Save the timezone configuration from the application settings.
|
|
89
|
-
self.__tz =
|
|
89
|
+
self.__tz = ZoneInfo(self.__app.config('app.timezone') or 'UTC')
|
|
90
90
|
|
|
91
91
|
# Initialize the AsyncIOScheduler with the configured timezone.
|
|
92
92
|
self.__scheduler = APSAsyncIOScheduler(timezone=self.__tz)
|
orionis/metadata/framework.py
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
NAME = "orionis"
|
|
6
6
|
|
|
7
7
|
# Current version of the framework
|
|
8
|
-
VERSION = "0.
|
|
8
|
+
VERSION = "0.625.0"
|
|
9
9
|
|
|
10
10
|
# Full name of the author or maintainer of the project
|
|
11
11
|
AUTHOR = "Raul Mauricio Uñate Castro"
|
|
@@ -84,7 +84,6 @@ REQUIRES = [
|
|
|
84
84
|
'rich>=13.9.4',
|
|
85
85
|
'psutil>=7.0.0',
|
|
86
86
|
'cryptography>=44.0.3',
|
|
87
|
-
'pytz>=2025.2'
|
|
88
87
|
]
|
|
89
88
|
|
|
90
89
|
#---------------------------------------------------------------------------
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: orionis
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.625.0
|
|
4
4
|
Summary: Orionis Framework – Elegant, Fast, and Powerful.
|
|
5
5
|
Home-page: https://github.com/orionis-framework/framework
|
|
6
6
|
Author: Raul Mauricio Uñate Castro
|
|
@@ -32,7 +32,6 @@ Requires-Dist: requests>=2.32.3
|
|
|
32
32
|
Requires-Dist: rich>=13.9.4
|
|
33
33
|
Requires-Dist: psutil>=7.0.0
|
|
34
34
|
Requires-Dist: cryptography>=44.0.3
|
|
35
|
-
Requires-Dist: pytz>=2025.2
|
|
36
35
|
Dynamic: author
|
|
37
36
|
Dynamic: author-email
|
|
38
37
|
Dynamic: classifier
|
|
@@ -64,7 +64,7 @@ orionis/console/request/cli_request.py,sha256=lO7088xlVK1VP-NhCIgAo7qXGzCW3nXVOJ
|
|
|
64
64
|
orionis/console/stub/command.stub,sha256=IfQ0bTrpataVFcT1ZdHyyiYNZ67D5Aox_QvgVJLeJnI,1240
|
|
65
65
|
orionis/console/stub/listener.stub,sha256=DbX-ghx2-vb73kzQ6L20lyg5vSKn58jSLTwFuwNQU9k,4331
|
|
66
66
|
orionis/console/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
|
-
orionis/console/tasks/schedule.py,sha256=
|
|
67
|
+
orionis/console/tasks/schedule.py,sha256=ZeeuQ9Tbu5KNowKC5oIk7yWeJXzlDQiQ278mWEgoCXc,87989
|
|
68
68
|
orionis/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
69
|
orionis/container/container.py,sha256=yfhRs85YpPvqGRfrjblkHEuZGCN0BijremI-3r1Epak,96842
|
|
70
70
|
orionis/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -216,7 +216,7 @@ orionis/foundation/providers/scheduler_provider.py,sha256=IrPQJwvQVLRm5Qnz0Cxon4
|
|
|
216
216
|
orionis/foundation/providers/testing_provider.py,sha256=eI1p2lUlxl25b5Z487O4nmqLE31CTDb4c3Q21xFadkE,1615
|
|
217
217
|
orionis/foundation/providers/workers_provider.py,sha256=GdHENYV_yGyqmHJHn0DCyWmWId5xWjD48e6Zq2PGCWY,1674
|
|
218
218
|
orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
219
|
-
orionis/metadata/framework.py,sha256=
|
|
219
|
+
orionis/metadata/framework.py,sha256=IUzbmVQgudOKc9b_rqMAxApxsx57n8g2ZIwHE4IR4nQ,4089
|
|
220
220
|
orionis/metadata/package.py,sha256=k7Yriyp5aUcR-iR8SK2ec_lf0_Cyc-C7JczgXa-I67w,16039
|
|
221
221
|
orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
222
222
|
orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -403,8 +403,8 @@ orionis/test/validators/workers.py,sha256=rWcdRexINNEmGaO7mnc1MKUxkHKxrTsVuHgbnI
|
|
|
403
403
|
orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
404
404
|
orionis/test/view/render.py,sha256=R55ykeRs0wDKcdTf4O1YZ8GDHTFmJ0IK6VQkbJkYUvo,5571
|
|
405
405
|
orionis/test/view/report.stub,sha256=QLqqCdRoENr3ECiritRB3DO_MOjRQvgBh5jxZ3Hs1r0,28189
|
|
406
|
-
orionis-0.
|
|
407
|
-
orionis-0.
|
|
408
|
-
orionis-0.
|
|
409
|
-
orionis-0.
|
|
410
|
-
orionis-0.
|
|
406
|
+
orionis-0.625.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
|
|
407
|
+
orionis-0.625.0.dist-info/METADATA,sha256=q1ztZyJ9RrzH5jtITrEtKrpmpRmTOdI5iSgkK0qOau8,4772
|
|
408
|
+
orionis-0.625.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
409
|
+
orionis-0.625.0.dist-info/top_level.txt,sha256=lyXi6jArpqJ-0zzNqd_uwsH-z9TCEBVBL-pC3Ekv7hU,8
|
|
410
|
+
orionis-0.625.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|