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.
Files changed (34) hide show
  1. {python_cq-0.21.0 → python_cq-0.21.1}/PKG-INFO +2 -2
  2. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/dispatchers/bus.py +1 -1
  3. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/related_events.py +1 -1
  4. {python_cq-0.21.0 → python_cq-0.21.1}/pyproject.toml +2 -2
  5. {python_cq-0.21.0 → python_cq-0.21.1}/.gitignore +0 -0
  6. {python_cq-0.21.0 → python_cq-0.21.1}/LICENSE +0 -0
  7. {python_cq-0.21.0 → python_cq-0.21.1}/cq/__init__.py +0 -0
  8. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/__init__.py +0 -0
  9. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/common/__init__.py +0 -0
  10. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/common/typing.py +0 -0
  11. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/cq.py +0 -0
  12. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/di.py +0 -0
  13. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/dispatchers/__init__.py +0 -0
  14. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/dispatchers/abc.py +0 -0
  15. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/dispatchers/lazy.py +0 -0
  16. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/dispatchers/pipe.py +0 -0
  17. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/handler.py +0 -0
  18. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/message.py +0 -0
  19. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/middleware.py +0 -0
  20. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/middlewares/__init__.py +0 -0
  21. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/middlewares/scope.py +0 -0
  22. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/pipetools.py +0 -0
  23. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/pump.py +0 -0
  24. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/queues/__init__.py +0 -0
  25. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/queues/abc.py +0 -0
  26. {python_cq-0.21.0 → python_cq-0.21.1}/cq/_core/queues/memory.py +0 -0
  27. {python_cq-0.21.0 → python_cq-0.21.1}/cq/exceptions.py +0 -0
  28. {python_cq-0.21.0 → python_cq-0.21.1}/cq/ext/__init__.py +0 -0
  29. {python_cq-0.21.0 → python_cq-0.21.1}/cq/ext/injection.py +0 -0
  30. {python_cq-0.21.0 → python_cq-0.21.1}/cq/middlewares/__init__.py +0 -0
  31. {python_cq-0.21.0 → python_cq-0.21.1}/cq/middlewares/exc.py +0 -0
  32. {python_cq-0.21.0 → python_cq-0.21.1}/cq/middlewares/retry.py +0 -0
  33. {python_cq-0.21.0 → python_cq-0.21.1}/cq/py.typed +0 -0
  34. {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.0
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.15,>=3.12
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]):
@@ -43,4 +43,4 @@ class AnyIORelatedEvents(RelatedEvents):
43
43
  def add(self, *events: Event) -> None:
44
44
  self.history.extend(events)
45
45
  for event in events:
46
- self.task_group.start_soon(self.emit, event)
46
+ self.task_group.start_soon(self.emit, event) # type: ignore[arg-type]
@@ -20,12 +20,12 @@ test = [
20
20
 
21
21
  [project]
22
22
  name = "python-cq"
23
- version = "0.21.0"
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.15"
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