Skip to content

Commit 72096f2

Browse files
committed
chore: depend on specific sdk and testing sdk version for clarity
1 parent 1855f38 commit 72096f2

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

emulator/DockerFile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ RUN ls
1010

1111
# Update the package lists and install Git
1212
# The commands are combined to reduce the final image size
13-
RUN apt-get update && apt-get upgrade && apt-get install -y --no-install-recommends git && apt-get purge -y --auto-remove && rm -rf /var/lib/apt/lists/*
13+
# uncomment if we need to depend directly on main branch
14+
# RUN apt-get update && apt-get upgrade && apt-get install -y --no-install-recommends git && apt-get purge -y --auto-remove && rm -rf /var/lib/apt/lists/*
1415

1516
# install emulator
1617
RUN pip install --no-cache-dir -e .

emulator/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ classifiers = [
2222
"Programming Language :: Python :: 3.13",
2323
]
2424
dependencies = [
25-
"aws-durable-execution-sdk-python-testing @ git+https://github.com/aws/aws-durable-execution-sdk-python-testing.git",
26-
"aws_durable_execution_sdk_python @ git+https://github.com/aws/aws-durable-execution-sdk-python.git",
25+
"aws-durable-execution-sdk-python-testing~=1.1.1",
26+
"aws_durable_execution_sdk_python~=1.3.0",
2727
"requests>=2.31.0,<3.0.0",
2828
"boto3>=1.34.0,<2.0.0",
2929
]

0 commit comments

Comments
 (0)