We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea76a4e commit 772e5ebCopy full SHA for 772e5eb
1 file changed
packages/examples/cli.py
@@ -57,9 +57,12 @@ def build_examples():
57
logger.exception("Failed to copy testing library")
58
return False
59
60
- # Copy testing SDK source
+ # Copy SDK source from the main SDK package
61
testing_src = (
62
- Path(__file__).parent.parent / "src" / "aws_durable_execution_sdk_python"
+ Path(__file__).parent.parent
63
+ / "aws-durable-execution-sdk-python"
64
+ / "src"
65
+ / "aws_durable_execution_sdk_python"
66
)
67
logger.info("Copying SDK from %s", testing_src)
68
shutil.copytree(testing_src, build_dir / "aws_durable_execution_sdk_python")
0 commit comments