python-cq 0.21.0__tar.gz → 0.21.1__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.
- {python_cq-0.21.0 → python_cq-0.21.1}/PKG-INFO +2 -2
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/dispatchers/bus.py +1 -1
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/related_events.py +1 -1
- {python_cq-0.21.0 → python_cq-0.21.1}/pyproject.toml +2 -2
- {python_cq-0.21.0 → python_cq-0.21.1}/.gitignore +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/LICENSE +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/__init__.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/__init__.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/common/__init__.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/common/typing.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/cq.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/di.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/dispatchers/__init__.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/dispatchers/abc.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/dispatchers/lazy.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/dispatchers/pipe.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/handler.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/message.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/middleware.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/middlewares/__init__.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/middlewares/scope.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/pipetools.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/pump.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/queues/__init__.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/queues/abc.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/queues/memory.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/exceptions.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/ext/__init__.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/ext/injection.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/middlewares/__init__.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/middlewares/exc.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/middlewares/retry.py +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/cq/py.typed +0 -0
- {python_cq-0.21.0 → python_cq-0.21.1}/docs/index.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-cq
|
|
3
|
-
Version: 0.21.
|
|
3
|
+
Version: 0.21.1
|
|
4
4
|
Summary: CQRS library for async Python projects.
|
|
5
5
|
Project-URL: Documentation, https://python-cq.remimd.dev
|
|
6
6
|
Project-URL: Repository, https://github.com/100nm/python-cq
|
|
@@ -22,7 +22,7 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
22
22
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
23
23
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
24
|
Classifier: Typing :: Typed
|
|
25
|
-
Requires-Python: <3.
|
|
25
|
+
Requires-Python: <3.16,>=3.12
|
|
26
26
|
Requires-Dist: anyio
|
|
27
27
|
Requires-Dist: type-analyzer
|
|
28
28
|
Provides-Extra: injection
|
|
@@ -69,7 +69,7 @@ class BaseBus[I, O](BaseDispatcher[I, O], Bus[I, O], ABC):
|
|
|
69
69
|
|
|
70
70
|
def _trigger_listeners(self, message: I, /, task_group: TaskGroup) -> None:
|
|
71
71
|
for listener in self.__listeners:
|
|
72
|
-
task_group.start_soon(listener, message)
|
|
72
|
+
task_group.start_soon(listener, message) # type: ignore[arg-type]
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
class SimpleBus[I, O](BaseBus[I, O]):
|
|
@@ -20,12 +20,12 @@ test = [
|
|
|
20
20
|
|
|
21
21
|
[project]
|
|
22
22
|
name = "python-cq"
|
|
23
|
-
version = "0.21.
|
|
23
|
+
version = "0.21.1"
|
|
24
24
|
description = "CQRS library for async Python projects."
|
|
25
25
|
license = "MIT"
|
|
26
26
|
license-files = ["LICENSE"]
|
|
27
27
|
readme = "docs/index.md"
|
|
28
|
-
requires-python = ">=3.12, <3.
|
|
28
|
+
requires-python = ">=3.12, <3.16"
|
|
29
29
|
authors = [{ name = "remimd" }]
|
|
30
30
|
keywords = ["cqrs"]
|
|
31
31
|
classifiers = [
|
|
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
|