Skip to content

Commit 7f29f5f

Browse files
authored
release(1.3.0): Remove container.py because has been promoted to itself the package to aiodi (#6)
1 parent 4b45cb0 commit 7f29f5f

File tree

13 files changed

+5
-362
lines changed

13 files changed

+5
-362
lines changed

aioddd/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# type: ignore
22
# pylint: skip-file
33
from .aggregates import Aggregate, AggregateRoot
4-
from .container import Container
54
from .cqrs import (
65
Command,
76
CommandBus,
@@ -48,8 +47,6 @@
4847
from .value_objects import Id, StrDateTime, Timestamp
4948

5049
__all__ = (
51-
# di
52-
'Container',
5350
# aggregates
5451
'Aggregate',
5552
'AggregateRoot',

aioddd/container.py

Lines changed: 0 additions & 281 deletions
This file was deleted.

aioddd/helpers.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import sys
2-
import typing
32
from datetime import datetime
43

54
if sys.version_info.major == 3 and sys.version_info.minor <= 6:
@@ -8,8 +7,3 @@
87
MonkeyPatch.patch_fromisoformat()
98

109
datetime_fromisoformat = getattr(datetime, 'fromisoformat')
11-
12-
typing_get_args = getattr(
13-
typing, 'get_args', lambda t: getattr(t, '__args__', ()) if t is not typing.Generic else typing.Generic
14-
)
15-
typing_get_origin = getattr(typing, 'get_origin', lambda t: getattr(t, '__origin__', None))

docs/en/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,6 @@ <h1 id="async-python-ddd-utilities-library">Async Python DDD utilities library</
413413
<li><strong>CQRS</strong>: Command, CommandBus, SimpleCommandBus, Query, Response, QueryHandler, QueryBus &amp; SimpleQueryBus</li>
414414
<li><strong>EventSourcing</strong>: Event, EventMapper, EventPublisher, EventHandler, EventBus, SimpleEventBus &amp; InternalEventPublisher</li>
415415
<li><strong>Errors</strong>: raise_, BaseError, NotFoundError, ConflictError, BadRequestError, UnauthorizedError, ForbiddenError, UnknownError, IdInvalidError, TimestampInvalidError, DateTimeInvalidError, EventMapperNotFoundError, EventNotPublishedError, CommandNotRegisteredError &amp; QueryNotRegisteredError</li>
416-
<li><strong>DependencyInjection</strong> (⚠ will move it to another package): Container</li>
417416
<li><strong>Tests</strong>: AsyncMock &amp; mock</li>
418417
<li><strong>Utils</strong>: get_env &amp; get_simple_logger</li>
419418
</ul>

docs/es/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,6 @@ <h1 id="libreria-de-utilidades-async-python-de-ddd">Librería de utilidades Asyn
413413
<li><strong>CQRS</strong>: Command, CommandBus, SimpleCommandBus, Query, Response, QueryHandler, QueryBus &amp; SimpleQueryBus</li>
414414
<li><strong>EventSourcing</strong>: Event, EventMapper, EventPublisher, EventHandler, EventBus, SimpleEventBus &amp; InternalEventPublisher</li>
415415
<li><strong>Errors</strong>: raise_, BaseError, NotFoundError, ConflictError, BadRequestError, UnauthorizedError, ForbiddenError, UnknownError, IdInvalidError, TimestampInvalidError, DateTimeInvalidError, EventMapperNotFoundError, EventNotPublishedError, CommandNotRegisteredError &amp; QueryNotRegisteredError</li>
416-
<li><strong>DependencyInjection</strong> (⚠ will move it to another package): Container</li>
417416
<li><strong>Tests</strong>: AsyncMock &amp; mock</li>
418417
<li><strong>Utils</strong>: get_env &amp; get_simple_logger</li>
419418
</ul>

docs/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,6 @@ <h1 id="async-python-ddd-utilities-library">Async Python DDD utilities library</
489489
<li><strong>CQRS</strong>: Command, CommandBus, SimpleCommandBus, Query, Response, QueryHandler, QueryBus &amp; SimpleQueryBus</li>
490490
<li><strong>EventSourcing</strong>: Event, EventMapper, EventPublisher, EventHandler, EventBus, SimpleEventBus &amp; InternalEventPublisher</li>
491491
<li><strong>Errors</strong>: raise_, BaseError, NotFoundError, ConflictError, BadRequestError, UnauthorizedError, ForbiddenError, UnknownError, IdInvalidError, TimestampInvalidError, DateTimeInvalidError, EventMapperNotFoundError, EventNotPublishedError, CommandNotRegisteredError &amp; QueryNotRegisteredError</li>
492-
<li><strong>DependencyInjection</strong> (⚠ will move it to another package): Container</li>
493492
<li><strong>Tests</strong>: AsyncMock &amp; mock</li>
494493
<li><strong>Utils</strong>: get_env &amp; get_simple_logger</li>
495494
</ul>

0 commit comments

Comments
 (0)