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
10 changes: 9 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["boto3>=1.40.30"]
dependencies = [
# TODO replace following with `"boto3>=1.40.30"` when we switch bundled botocore with publically available one
"botocore @ file:src/aws_durable_execution_sdk_python/lib/botocore-1.40.51-py3-none-any.whl",
"boto3 @ file:src/aws_durable_execution_sdk_python/lib/boto3-1.40.51-py3-none-any.whl"
]

[project.urls]
Documentation = "https://github.com/aws/aws-durable-execution-sdk-python#readme"
Expand All @@ -34,6 +38,10 @@ packages = ["src/aws_durable_execution_sdk_python"]
[tool.hatch.version]
path = "src/aws_durable_execution_sdk_python/__about__.py"

# TODO remove this when we switch bundled botocore with publically available one
[tool.hatch.metadata]
allow-direct-references = true

[tool.hatch.envs.test]
dependencies = ["coverage[toml]", "pytest", "pytest-cov"]

Expand Down
Loading