orchestrator-lso 2.4.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: orchestrator-lso
3
- Version: 2.4.3
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.121.1
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
- Requires-Dist: pydantic-settings==2.11.0
34
- Requires-Dist: celery==5.5.3
33
+ Requires-Dist: pydantic-settings==2.12.0
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
 
@@ -13,7 +13,7 @@
13
13
 
14
14
  """LSO, an API for remotely running Ansible playbooks."""
15
15
 
16
- __version__ = "2.4.3"
16
+ __version__ = "2.4.5"
17
17
 
18
18
  import logging
19
19
 
@@ -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[misc]
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[misc]
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[misc]
48
- def worker_shutting_down_handler(sig, how, exitcode, **kwargs) -> None: # type: ignore[no-untyped-def] # noqa: ARG001
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"
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.121.1",
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
- "pydantic-settings==2.11.0",
40
- "celery==5.5.3",
39
+ "pydantic-settings==2.12.0",
40
+ "celery==5.6.0",
41
41
  "redis==5.3.1",
42
42
  ]
43
43