orchestrator-lso 2.4.4__tar.gz → 2.4.5__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.
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/PKG-INFO +4 -4
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/lso/__init__.py +1 -1
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/lso/tasks.py +2 -2
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/lso/worker.py +2 -2
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/pyproject.toml +3 -3
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/README.md +0 -0
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/lso/app.py +0 -0
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/lso/config.py +0 -0
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/lso/environment.py +0 -0
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/lso/execute.py +0 -0
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/lso/playbook.py +0 -0
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/lso/routes/__init__.py +0 -0
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/lso/routes/default.py +0 -0
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/lso/routes/execute.py +0 -0
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/lso/routes/playbook.py +0 -0
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/lso/schema.py +0 -0
- {orchestrator_lso-2.4.4 → orchestrator_lso-2.4.5}/lso/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: orchestrator-lso
|
|
3
|
-
Version: 2.4.
|
|
3
|
+
Version: 2.4.5
|
|
4
4
|
Summary: LSO, an API for remotely running Ansible playbooks.
|
|
5
5
|
Author: GÉANT Orchestration and Automation Team
|
|
6
6
|
Author-email: GÉANT Orchestration and Automation Team <goat@geant.org>
|
|
@@ -26,16 +26,16 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
26
26
|
Classifier: Programming Language :: Python :: 3.12
|
|
27
27
|
Requires-Dist: ansible-runner==2.4.2
|
|
28
28
|
Requires-Dist: ansible==10.7.0
|
|
29
|
-
Requires-Dist: fastapi==0.
|
|
29
|
+
Requires-Dist: fastapi==0.128.0
|
|
30
30
|
Requires-Dist: httpx==0.28.1
|
|
31
31
|
Requires-Dist: uvicorn[standard]==0.38.0
|
|
32
32
|
Requires-Dist: requests==2.32.5
|
|
33
33
|
Requires-Dist: pydantic-settings==2.12.0
|
|
34
|
-
Requires-Dist: celery==5.
|
|
34
|
+
Requires-Dist: celery==5.6.0
|
|
35
35
|
Requires-Dist: redis==5.3.1
|
|
36
36
|
Requires-Python: >=3.11, <3.14
|
|
37
|
-
Project-URL: Documentation, https://docs.gap.geant.org
|
|
38
37
|
Project-URL: Homepage, https://workfloworchestrator.org/lso/
|
|
38
|
+
Project-URL: Documentation, https://docs.gap.geant.org
|
|
39
39
|
Project-URL: Source, https://github.com/workfloworchestrator/lso
|
|
40
40
|
Description-Content-Type: text/markdown
|
|
41
41
|
|
|
@@ -101,7 +101,7 @@ def playbook_finished_handler_factory(callback: str | None, job_id: str) -> Call
|
|
|
101
101
|
return None
|
|
102
102
|
|
|
103
103
|
|
|
104
|
-
@celery.task(name=RUN_PLAYBOOK) # type: ignore[
|
|
104
|
+
@celery.task(name=RUN_PLAYBOOK) # type: ignore[untyped-decorator]
|
|
105
105
|
def run_playbook_proc_task(
|
|
106
106
|
job_id: str,
|
|
107
107
|
playbook_path: str,
|
|
@@ -134,7 +134,7 @@ def run_playbook_proc_task(
|
|
|
134
134
|
)
|
|
135
135
|
|
|
136
136
|
|
|
137
|
-
@celery.task(name=RUN_EXECUTABLE) # type: ignore[
|
|
137
|
+
@celery.task(name=RUN_EXECUTABLE) # type: ignore[untyped-decorator]
|
|
138
138
|
def run_executable_proc_task(job_id: str, executable_path: str, args: list[str], callback: str | None) -> None:
|
|
139
139
|
"""Celery task to run an arbitrary executable and notify via callback.
|
|
140
140
|
|
|
@@ -44,7 +44,7 @@ if settings.WORKER_QUEUE_NAME:
|
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
|
|
47
|
-
@worker_shutting_down.connect # type: ignore[
|
|
48
|
-
def worker_shutting_down_handler(sig, how, exitcode, **kwargs) -> None: # type: ignore[no-untyped-def]
|
|
47
|
+
@worker_shutting_down.connect # type: ignore[untyped-decorator]
|
|
48
|
+
def worker_shutting_down_handler(sig, how, exitcode, **kwargs) -> None: # type: ignore[no-untyped-def] # noqa: ARG001
|
|
49
49
|
"""Handle the Celery worker shutdown event."""
|
|
50
50
|
celery.close()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "orchestrator-lso"
|
|
3
|
-
version = "2.4.
|
|
3
|
+
version = "2.4.5"
|
|
4
4
|
description = "LSO, an API for remotely running Ansible playbooks."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "Apache-2.0"
|
|
@@ -32,12 +32,12 @@ classifiers = [
|
|
|
32
32
|
dependencies = [
|
|
33
33
|
"ansible-runner==2.4.2",
|
|
34
34
|
"ansible==10.7.0",
|
|
35
|
-
"fastapi==0.
|
|
35
|
+
"fastapi==0.128.0",
|
|
36
36
|
"httpx==0.28.1",
|
|
37
37
|
"uvicorn[standard]==0.38.0",
|
|
38
38
|
"requests==2.32.5",
|
|
39
39
|
"pydantic-settings==2.12.0",
|
|
40
|
-
"celery==5.
|
|
40
|
+
"celery==5.6.0",
|
|
41
41
|
"redis==5.3.1",
|
|
42
42
|
]
|
|
43
43
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|