simple-module-background-tasks 0.0.6__tar.gz → 0.0.7__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.
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/PKG-INFO +5 -4
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/pyproject.toml +6 -4
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/.gitignore +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/LICENSE +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/README.md +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/__init__.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/_signal_support.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/celery_app.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/constants.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/contracts/__init__.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/contracts/events.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/contracts/schemas.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/deps.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/endpoints/__init__.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/endpoints/api_admin.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/endpoints/views.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/locales/en.json +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/models.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/module.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/pages/Detail.tsx +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/pages/Index.tsx +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/pages/Workers.tsx +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/pages/components/ExecutionRow.tsx +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/pages/components/RetryConfirmDialog.tsx +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/pages/constants.ts +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/pages/retry.ts +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/py.typed +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/service.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/services.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/settings.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/signals.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/sync_db.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/tasks.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/background_tasks/worker_inspector.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/package.json +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/tests/conftest.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/tests/test_admin_api.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/tests/test_bg_service.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/tests/test_signals.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/tests/test_worker_inspector.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/tests/test_workers_endpoints.py +0 -0
- {simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/tsconfig.json +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: simple_module_background_tasks
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.7
|
|
4
4
|
Summary: Celery + Redis task queue with admin UI for monitoring and retrying failed/stuck tasks
|
|
5
5
|
Project-URL: Homepage, https://github.com/antosubash/simple_module_python
|
|
6
6
|
Project-URL: Repository, https://github.com/antosubash/simple_module_python
|
|
@@ -23,9 +23,10 @@ Classifier: Typing :: Typed
|
|
|
23
23
|
Requires-Python: >=3.12
|
|
24
24
|
Requires-Dist: celery[redis]>=5.4
|
|
25
25
|
Requires-Dist: redis>=5
|
|
26
|
-
Requires-Dist: simple-module-core==0.0.
|
|
27
|
-
Requires-Dist: simple-module-db==0.0.
|
|
28
|
-
Requires-Dist: simple-module-hosting==0.0.
|
|
26
|
+
Requires-Dist: simple-module-core==0.0.7
|
|
27
|
+
Requires-Dist: simple-module-db==0.0.7
|
|
28
|
+
Requires-Dist: simple-module-hosting==0.0.7
|
|
29
|
+
Requires-Dist: simple-module-settings==0.0.7
|
|
29
30
|
Description-Content-Type: text/markdown
|
|
30
31
|
|
|
31
32
|
# simple_module_background_tasks
|
{simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/pyproject.toml
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "simple_module_background_tasks"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.7"
|
|
4
4
|
description = "Celery + Redis task queue with admin UI for monitoring and retrying failed/stuck tasks"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
@@ -21,9 +21,10 @@ classifiers = [
|
|
|
21
21
|
"Typing :: Typed",
|
|
22
22
|
]
|
|
23
23
|
dependencies = [
|
|
24
|
-
"simple_module_core==0.0.
|
|
25
|
-
"simple_module_db==0.0.
|
|
26
|
-
"simple_module_hosting==0.0.
|
|
24
|
+
"simple_module_core==0.0.7",
|
|
25
|
+
"simple_module_db==0.0.7",
|
|
26
|
+
"simple_module_hosting==0.0.7",
|
|
27
|
+
"simple_module_settings==0.0.7",
|
|
27
28
|
"celery[redis]>=5.4",
|
|
28
29
|
"redis>=5",
|
|
29
30
|
]
|
|
@@ -53,3 +54,4 @@ packages = ["background_tasks"]
|
|
|
53
54
|
simple_module_core = { workspace = true }
|
|
54
55
|
simple_module_db = { workspace = true }
|
|
55
56
|
simple_module_hosting = { workspace = true }
|
|
57
|
+
simple_module_settings = { workspace = true }
|
|
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
|
|
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
|
|
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
|
{simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/tests/conftest.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simple_module_background_tasks-0.0.6 → simple_module_background_tasks-0.0.7}/tests/test_signals.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|