Skip to content

Commit

Permalink
Reapply "Pin jsonschema for Lambda Layer to version 4.17.3"
Browse files Browse the repository at this point in the history
This reverts commit 9277bda.
  • Loading branch information
hanwen-cluster authored and hanwen-pcluste committed Oct 11, 2024
1 parent 3997c2d commit 89873ed
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/integration-tests/conftest_resource_bucket.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ def install_pc(basepath, pc_version):
cli_dir = root / "cli"
try:
logger.info("installing ParallelCluster packages...")
subprocess.check_call([sys.executable, "-m", "pip", "install", f"{cli_dir}[awslambda]", "-t", tempdir])
subprocess.check_call(
[sys.executable, "-m", "pip", "install", "jsonschema==4.17.3", f"{cli_dir}[awslambda]", "-t", tempdir]
)
# The following are provided by the lambda runtime
shutil.rmtree(tempdir / "botocore")
shutil.rmtree(tempdir / "boto3")
Expand Down

0 comments on commit 89873ed

Please sign in to comment.