arcane-execution-handler 1.0.0__tar.gz → 1.0.1__tar.gz
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.
- {arcane_execution_handler-1.0.0 → arcane_execution_handler-1.0.1}/PKG-INFO +4 -5
- {arcane_execution_handler-1.0.0 → arcane_execution_handler-1.0.1}/pyproject.toml +4 -4
- {arcane_execution_handler-1.0.0 → arcane_execution_handler-1.0.1}/README.md +0 -0
- {arcane_execution_handler-1.0.0 → arcane_execution_handler-1.0.1}/arcane/execution_handler/__init__.py +0 -0
- {arcane_execution_handler-1.0.0 → arcane_execution_handler-1.0.1}/arcane/execution_handler/datastore_lgp.py +0 -0
- {arcane_execution_handler-1.0.0 → arcane_execution_handler-1.0.1}/arcane/execution_handler/exception.py +0 -0
- {arcane_execution_handler-1.0.0 → arcane_execution_handler-1.0.1}/arcane/execution_handler/execution_handler.py +0 -0
- {arcane_execution_handler-1.0.0 → arcane_execution_handler-1.0.1}/arcane/execution_handler/types.py +0 -0
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: arcane-execution-handler
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Generic execution-start handling for scheduled entities (ingestion, processing, ...)
|
|
5
5
|
Author: Arcane
|
|
6
6
|
Author-email: product@wearcane.com
|
|
7
|
-
Requires-Python: >=3.11,<
|
|
7
|
+
Requires-Python: >=3.11,<3.14
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.11
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.12
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.13
|
|
12
|
-
|
|
13
|
-
Requires-Dist: arcane-
|
|
14
|
-
Requires-Dist: arcane-pubsub (>=1.5.0,<2.0.0)
|
|
12
|
+
Requires-Dist: arcane-datastore (>=1.2.0,<2.0.0)
|
|
13
|
+
Requires-Dist: arcane-pubsub (>=1.6.0,<2.0.0)
|
|
15
14
|
Requires-Dist: python-dateutil (>=2.7,<3.0)
|
|
16
15
|
Requires-Dist: pytz (>=2024.2,<2025.0)
|
|
17
16
|
Description-Content-Type: text/markdown
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "arcane-execution-handler"
|
|
3
|
-
version = "1.0.
|
|
3
|
+
version = "1.0.1"
|
|
4
4
|
description = "Generic execution-start handling for scheduled entities (ingestion, processing, ...)"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = ["Arcane <product@wearcane.com>"]
|
|
@@ -9,9 +9,9 @@ packages = [
|
|
|
9
9
|
]
|
|
10
10
|
|
|
11
11
|
[tool.poetry.dependencies]
|
|
12
|
-
python = "
|
|
13
|
-
arcane-datastore = "^1.
|
|
14
|
-
arcane-pubsub = "^1.
|
|
12
|
+
python = ">=3.11,<3.14"
|
|
13
|
+
arcane-datastore = "^1.2.0"
|
|
14
|
+
arcane-pubsub = "^1.6.0"
|
|
15
15
|
python-dateutil = "^2.7"
|
|
16
16
|
pytz = "^2024.2"
|
|
17
17
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{arcane_execution_handler-1.0.0 → arcane_execution_handler-1.0.1}/arcane/execution_handler/types.py
RENAMED
|
File without changes
|