async-lambda-unstable 0.2.13__tar.gz → 0.2.15__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.
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/PKG-INFO +1 -1
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/__init__.py +1 -1
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/cli.py +2 -1
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/models/events/base_event.py +1 -1
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda_unstable.egg-info/PKG-INFO +1 -1
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/README.md +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/build_config.py +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/config.py +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/controller.py +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/env.py +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/models/__init__.py +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/models/events/__init__.py +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/models/events/api_event.py +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/models/events/managed_sqs_event.py +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/models/events/scheduled_event.py +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/models/events/unmanaged_sqs_event.py +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/models/mock/mock_context.py +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/models/mock/mock_event.py +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/models/task.py +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/py.typed +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda_unstable.egg-info/SOURCES.txt +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda_unstable.egg-info/dependency_links.txt +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda_unstable.egg-info/entry_points.txt +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda_unstable.egg-info/requires.txt +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda_unstable.egg-info/top_level.txt +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/pyproject.toml +0 -0
- {async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/setup.cfg +0 -0
|
@@ -9,4 +9,4 @@ from .models.events.managed_sqs_event import ManagedSQSEvent as ManagedSQSEvent
|
|
|
9
9
|
from .models.events.scheduled_event import ScheduledEvent as ScheduledEvent
|
|
10
10
|
from .models.events.unmanaged_sqs_event import UnmanagedSQSEvent as UnmanagedSQSEvent
|
|
11
11
|
|
|
12
|
-
__version__ = "0.2.
|
|
12
|
+
__version__ = "0.2.15"
|
|
@@ -114,7 +114,8 @@ def build(module: str, output: str, stage: Optional[str] = None):
|
|
|
114
114
|
entrypoint = dir.joinpath(f"{module}.py")
|
|
115
115
|
z.write(entrypoint, entrypoint.relative_to(dir))
|
|
116
116
|
|
|
117
|
-
|
|
117
|
+
src_dir = dir.joinpath("src")
|
|
118
|
+
for entry in src_dir.rglob("*"):
|
|
118
119
|
z.write(entry, entry.relative_to(dir))
|
|
119
120
|
|
|
120
121
|
packages_dir = dir.joinpath(".async_lambda", "build", "packages")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/models/__init__.py
RENAMED
|
File without changes
|
{async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/models/events/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{async-lambda-unstable-0.2.13 → async-lambda-unstable-0.2.15}/async_lambda/models/mock/mock_event.py
RENAMED
|
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
|