Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/lambda-layer-publish.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[layer]
sdk-version = "1.8.0"
sdk-version = "2.0.0"
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "0.0.0"
description = "OpenTelemetry conformance test handlers for the AWS Durable Execution SDK for Python, exercised by the aws-durable-execution-conformance-tests OTel suites."
requires-python = ">=3.11"
dependencies = [
"aws-durable-execution-sdk-python==1.8.0",
"aws-durable-execution-sdk-python==2.0.0",
"aws-durable-execution-sdk-python-otel==0.4.0",
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "0.0.0"
description = "Cross-SDK conformance test handlers for the AWS Durable Execution SDK for Python, exercised by the aws-durable-execution-conformance-tests runner."
requires-python = ">=3.11"
dependencies = [
"aws-durable-execution-sdk-python==1.8.0",
"aws-durable-execution-sdk-python==2.0.0",
]

[tool.hatch.build.targets.wheel]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
# >=1.8.0: first release carrying the plugin invocation-hook fields
# >=2.0.0: first published release carrying the plugin invocation-hook fields
# (InvocationInfo.execution_input / InvocationEndInfo.execution_result).
"aws-durable-execution-sdk-python>=1.8.0",
"aws-durable-execution-sdk-python>=2.0.0",
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-durable-execution-sdk-python-otel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ setups.
## Requirements

- Python >= 3.11
- `aws-durable-execution-sdk-python` >= 1.8.0
- `aws-durable-execution-sdk-python` >= 2.0.0
- An ADOT/community OpenTelemetry Lambda layer, or the `standalone` extra

## License
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"aws-durable-execution-sdk-python>=1.8.0",
"aws-durable-execution-sdk-python>=2.0.0",
]

[project.entry-points."aws_durable_execution.plugins"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

PACKAGE_ROOT = Path(__file__).resolve().parents[1]
REPOSITORY_ROOT = PACKAGE_ROOT.parents[1]
CORE_DEPENDENCY = "aws-durable-execution-sdk-python>=1.8.0"
CORE_DEPENDENCY = "aws-durable-execution-sdk-python>=2.0.0"
TEST_OTEL_DEPENDENCIES = {
"opentelemetry-sdk>=1.20.0",
"opentelemetry-propagator-aws-xray",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2025-present Amazon.com, Inc. or its affiliates.
#
# SPDX-License-Identifier: Apache-2.0
__version__ = "1.8.0"
__version__ = "2.0.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ test = "pytest packages/aws-durable-execution-sdk-python-examples/test {args}"

[tool.hatch.envs.test-pypi-otel]
dependencies = [
"aws-durable-execution-sdk-python>=1.8.0",
"aws-durable-execution-sdk-python>=2.0.0",
"opentelemetry-sdk>=1.20.0",
"opentelemetry-propagator-aws-xray",
"pytest",
Expand Down
Loading