async-lambda-unstable 0.3.7__tar.gz → 0.3.8__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.3.7 → async-lambda-unstable-0.3.8}/PKG-INFO +1 -1
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/__init__.py +1 -1
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/defer.py +3 -1
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda_unstable.egg-info/PKG-INFO +1 -1
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda_unstable.egg-info/requires.txt +1 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/pyproject.toml +1 -1
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/README.md +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/build_config.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/cli.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/client.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/config.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/controller.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/env.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/models/__init__.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/models/events/__init__.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/models/events/api_event.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/models/events/base_event.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/models/events/managed_sqs_event.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/models/events/scheduled_event.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/models/events/unmanaged_sqs_event.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/models/mock/mock_context.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/models/mock/mock_event.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/models/task.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/py.typed +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/util.py +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda_unstable.egg-info/SOURCES.txt +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda_unstable.egg-info/dependency_links.txt +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda_unstable.egg-info/entry_points.txt +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda_unstable.egg-info/top_level.txt +0 -0
- {async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/setup.cfg +0 -0
|
@@ -10,4 +10,4 @@ from .models.events.managed_sqs_event import ManagedSQSEvent as ManagedSQSEvent
|
|
|
10
10
|
from .models.events.scheduled_event import ScheduledEvent as ScheduledEvent
|
|
11
11
|
from .models.events.unmanaged_sqs_event import UnmanagedSQSEvent as UnmanagedSQSEvent
|
|
12
12
|
|
|
13
|
-
__version__ = "0.3.
|
|
13
|
+
__version__ = "0.3.8"
|
|
@@ -7,7 +7,7 @@ dynamic = ["version"]
|
|
|
7
7
|
readme = "README.md"
|
|
8
8
|
authors = [{ name = "Nuclei, Inc", email = "engineering@nuclei.ai" }]
|
|
9
9
|
description = "A framework for creating AWS Lambda Async Workflows. - Unstable Branch"
|
|
10
|
-
dependencies = ["click>=8.0.0"]
|
|
10
|
+
dependencies = ["click>=8.0.0", "typing-extensions>=4.0.0"]
|
|
11
11
|
|
|
12
12
|
[project.optional-dependencies]
|
|
13
13
|
local = ["boto3", "flask>=2.3.0,<3.0.0"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/models/events/__init__.py
RENAMED
|
File without changes
|
{async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/models/events/api_event.py
RENAMED
|
File without changes
|
{async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/models/events/base_event.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/async_lambda/models/mock/mock_context.py
RENAMED
|
File without changes
|
{async-lambda-unstable-0.3.7 → async-lambda-unstable-0.3.8}/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
|