simple-module-background-tasks 0.0.7__tar.gz → 0.0.9__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.
Files changed (42) hide show
  1. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/PKG-INFO +5 -5
  2. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/package.json +4 -1
  3. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/pyproject.toml +5 -5
  4. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/.gitignore +0 -0
  5. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/LICENSE +0 -0
  6. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/README.md +0 -0
  7. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/__init__.py +0 -0
  8. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/_signal_support.py +0 -0
  9. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/celery_app.py +0 -0
  10. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/constants.py +0 -0
  11. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/contracts/__init__.py +0 -0
  12. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/contracts/events.py +0 -0
  13. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/contracts/schemas.py +0 -0
  14. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/deps.py +0 -0
  15. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/endpoints/__init__.py +0 -0
  16. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/endpoints/api_admin.py +0 -0
  17. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/endpoints/views.py +0 -0
  18. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/locales/en.json +0 -0
  19. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/models.py +0 -0
  20. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/module.py +0 -0
  21. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/pages/Detail.tsx +0 -0
  22. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/pages/Index.tsx +0 -0
  23. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/pages/Workers.tsx +0 -0
  24. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/pages/components/ExecutionRow.tsx +0 -0
  25. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/pages/components/RetryConfirmDialog.tsx +0 -0
  26. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/pages/constants.ts +0 -0
  27. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/pages/retry.ts +0 -0
  28. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/py.typed +0 -0
  29. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/service.py +0 -0
  30. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/services.py +0 -0
  31. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/settings.py +0 -0
  32. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/signals.py +0 -0
  33. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/sync_db.py +0 -0
  34. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/tasks.py +0 -0
  35. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/background_tasks/worker_inspector.py +0 -0
  36. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/tests/conftest.py +0 -0
  37. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/tests/test_admin_api.py +0 -0
  38. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/tests/test_bg_service.py +0 -0
  39. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/tests/test_signals.py +0 -0
  40. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/tests/test_worker_inspector.py +0 -0
  41. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/tests/test_workers_endpoints.py +0 -0
  42. {simple_module_background_tasks-0.0.7 → simple_module_background_tasks-0.0.9}/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.7
3
+ Version: 0.0.9
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,10 +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.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
26
+ Requires-Dist: simple-module-core==0.0.9
27
+ Requires-Dist: simple-module-db==0.0.9
28
+ Requires-Dist: simple-module-hosting==0.0.9
29
+ Requires-Dist: simple-module-settings==0.0.9
30
30
  Description-Content-Type: text/markdown
31
31
 
32
32
  # simple_module_background_tasks
@@ -12,5 +12,8 @@
12
12
  "devDependencies": {
13
13
  "@simple-module-py/tsconfig": "*"
14
14
  },
15
- "dependencies": {}
15
+ "dependencies": {
16
+ "lucide-react": "^1.8.0",
17
+ "sonner": "^2.0.0"
18
+ }
16
19
  }
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "simple_module_background_tasks"
3
- version = "0.0.7"
3
+ version = "0.0.9"
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,10 +21,10 @@ classifiers = [
21
21
  "Typing :: Typed",
22
22
  ]
23
23
  dependencies = [
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",
24
+ "simple_module_core==0.0.9",
25
+ "simple_module_db==0.0.9",
26
+ "simple_module_hosting==0.0.9",
27
+ "simple_module_settings==0.0.9",
28
28
  "celery[redis]>=5.4",
29
29
  "redis>=5",
30
30
  ]