Skip to content

fix: deprecate python36 from chalice #539

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jan 9, 2023
2 changes: 1 addition & 1 deletion decrypt_oracle/.chalice/buildspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 0.2
phases:
install:
commands:
- pip install tox
- pip install "tox < 4.0"
build:
commands:
- cd decrypt_oracle
Expand Down
2 changes: 1 addition & 1 deletion decrypt_oracle/.chalice/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

APPLICATION_NAME = "AwsEncryptionSdkDecryptOraclePython"
PIPELINE_STACK_NAME = "{}DeployPipeline".format(APPLICATION_NAME)
CODEBUILD_IMAGE = "aws/codebuild/python:3.6.5"
CODEBUILD_IMAGE = "aws/codebuild/standard:5.0"
BUILDSPEC = "decrypt_oracle/.chalice/buildspec.yaml"
GITHUB_REPO = "aws-encryption-sdk-python"
WAITER_CONFIG = dict(Delay=10)
Expand Down