Skip to content

Commit

Permalink
using a stricter pin on install modules
Browse files Browse the repository at this point in the history
  • Loading branch information
kessler-frost committed Nov 7, 2023
1 parent 62ce89f commit 49a79ac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ RUN apt-get update && apt-get install -y \
gcc \
&& rm -rf /var/lib/apt/lists/*

RUN pip install --no-cache-dir --upgrade \
amazon-braket-pennylane-plugin>=1.17.4 \
boto3>=1.28.5 \
pennylane>=0.31.1 \
RUN pip install --no-cache-dir \
boto3==1.28.5 \
pennylane==0.31.1 \
amazon-braket-pennylane-plugin==1.17.4 \
sagemaker-training

RUN if [ -z "$PRE_RELEASE" ]; then \
Expand Down
2 changes: 1 addition & 1 deletion covalent_braket_plugin/assets/infra/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Prefix this "name" with something unique for your deployment.
# This is used in addition to the `amazon-braket` prefix to ensure uniqueness, for e.g. the full name will be `amazon-braket-<name>-bucket` for S3 bucket name.
variable "name" {
default = "covalent"
default = "sankalp-covalent"
description = "Name to be used in the new provisioned resources"
}

Expand Down

0 comments on commit 49a79ac

Please sign in to comment.