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