eventsourcing 9.4.3__tar.gz → 9.4.4__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.

Potentially problematic release.


This version of eventsourcing might be problematic. Click here for more details.

Files changed (26) hide show
  1. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/PKG-INFO +1 -1
  2. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/dispatch.py +1 -1
  3. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/sqlite.py +4 -4
  4. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/pyproject.toml +1 -1
  5. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/AUTHORS +0 -0
  6. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/LICENSE +0 -0
  7. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/README.md +0 -0
  8. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/__init__.py +0 -0
  9. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/application.py +0 -0
  10. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/cipher.py +0 -0
  11. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/compressor.py +0 -0
  12. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/cryptography.py +0 -0
  13. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/domain.py +0 -0
  14. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/interface.py +0 -0
  15. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/persistence.py +0 -0
  16. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/popo.py +0 -0
  17. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/postgres.py +0 -0
  18. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/projection.py +0 -0
  19. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/py.typed +0 -0
  20. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/system.py +0 -0
  21. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/tests/__init__.py +0 -0
  22. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/tests/application.py +0 -0
  23. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/tests/domain.py +0 -0
  24. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/tests/persistence.py +0 -0
  25. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/tests/postgres_utils.py +0 -0
  26. {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: eventsourcing
3
- Version: 9.4.3
3
+ Version: 9.4.4
4
4
  Summary: Event sourcing in Python
5
5
  License: BSD-3-Clause
6
6
  Keywords: event sourcing,event store,domain driven design,domain-driven design,ddd,cqrs,cqs
@@ -63,7 +63,7 @@ class singledispatchmethod(_singledispatchmethod[_T]): # noqa: N801
63
63
 
64
64
  try:
65
65
  return self.dispatcher.register(cast("type[Any]", cls), func=method)
66
- except NameError:
66
+ except (NameError, TypeError): # NameError <= Py3.13, TypeError >= Py3.14
67
67
  self.deferred_registrations.append(
68
68
  (cls, method) # pyright: ignore [reportArgumentType]
69
69
  )
@@ -600,10 +600,10 @@ class SQLiteTrackingRecorder(SQLiteRecorder, TrackingRecorder):
600
600
 
601
601
  c.execute(
602
602
  self.insert_tracking_statement,
603
- (
604
- tracking.application_name,
605
- tracking.notification_id,
606
- ),
603
+ {
604
+ "application_name": tracking.application_name,
605
+ "notification_id": tracking.notification_id,
606
+ },
607
607
  )
608
608
  if self.datastore.single_row_tracking:
609
609
  fetchone = c.fetchone()
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [project]
6
6
  name = "eventsourcing"
7
- version = "9.4.3"
7
+ version = "9.4.4"
8
8
  description = "Event sourcing in Python"
9
9
  license = "BSD-3-Clause"
10
10
  readme = "README.md"
File without changes
File without changes
File without changes